奥礼网
新记
#include<stdio.h> void main() { int i=0,j=10,k=2,s=0; for(;;;) { i+=k; if(i>j); {printf("%d\n",s);
这个程序的错误怎么改
举报该文章
相关建议 2011-11-04
for(;;;) for 分号太多,2 个可以。
if(i>j); -- 去掉分号
改为:
#include<stdio.h>
void main() { int i=0,j=10,k=2,s=0;
for(;;) {
i+=k;
if(i>j) {printf("%d\n",s);break; } else printf("i=%d\n",i);
}
}
温馨提示:内容为网友见解,仅供参考
当前网址:
https://aolonic.com/aa/kkdd3g4kg.html
其他看法
无其他回答
相似回答
大家正在搜
相关问题
#include<stdio.h> main() {int ...
#include<stdio.h> int main(voi...
#include<stdio.h> main(){ int ...
#include <stdio.h> void main()...
#include<stdio.h> main(void) {...
#include <stdio.h>main(){...
#include <stdio.h> void main( ...