本文共 343 字,大约阅读时间需要 1 分钟。
1,while((ch = getchar()) != EOF)
{ putchar(ch);}2,while((ch=getchar()) != EOF){ if(ch < '0' || ch > '9'){ continue;}} //process only the digits3,while(scanf("%f",&value) == 1){ if(value < 0){ break; //process the nonnegative}}4,while(scanf("%f",&value) == 1 && value >= 0){ ;}5,while((ch = getchar()) != EOF && ch != '\n'){ ;}
转载地址:http://lfiea.baihongyu.com/