最新回答 / 慕函数7284775
我知道了,这个格式符%d %f %c %s,都要用英文字母,我输入法切成中文,一直运行错误,等把输入法切成英文的(不是大小写切换,是ctrl+shirt切换)写上就可以运行成功了
2018-05-04
最赞回答 / Dq_慕
#include <stdio.h>int main(){ int i; for(i=1; i<=10; i++) { printf("%d\n", i); if(i==3) goto END; } END: printf("结束for循环了...."); return 0;}<...code...>
2018-05-04
最新回答 / 大佬燊
if(hd*hd*hd + td*td*td + sd*sd*sd == num) 改成 if(num==hd*hd*hd+td*td*td+sd*sd*sd) td = (num % 100) / 10;改成 td = (num-hd*100)/10;
2018-05-03