【知识点】
● while (scanf("%d%d",&n,&m)!=EOF)功能等效于 while (~scanf("%d%d",&n,&m))
● 由下面的代码看出,EOF的值为-1。
#includeusing namespace std; int main() { printf("%d",EOF); //output -1 return 0; }
● 函数 scanf() 的返回值是输入值的个数,如果没有输入值就是返回-1;
● 符号 ~ 表示按位取反 *** 作,-1按位取反 *** 作的结果是0。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)