Please match the words and phrases with their Chinese translation.
查看答案
执行语句“for(i=1;i<9; i++);”后变量i的值是______。
A. 10
B. 9
C. 8
D. 7
#include main(){ int x, y =0;for(x=1;x<=10;x++){ if(y>=10)break;y=y+x;}printf(“%d %d”,y,x);}运行结果为:
以下for语句循环次数是次。for(x=0;x<=4;x++)x=x+1;
程序改错题:下列程序存在一些错误,请在答题处指出错误行号。求十种商品的平均价格,并输出。1 include2int main(void)3{4int n;5 double x,total;6 total==0;7 for(n=1,n<=10,n++){8scanf(″%f″,x);9total+=x;10 }11printf(″%.2f″; total/10);12return 0;13}答题区:(1)错误行号:_________(2)错误行号:_________(3)错误行号:_________(4)错误行号:_________(5)错误行号:_________