标签: c++ scanf eof
#include<bits/stdc++.h> #define ll long long using namespace std; int main() { ll n; while(scanf("%lld",&n) != EOF) { printf("hello\n"); } return 0; }
//当我输入一个非整数时,循环无限运行,我认为它不应该。有人可以解释一下吗?