最新回答 / 慕移动9181930
确实,平时自己开发过程中主要是思维没想到,看了一下有些指点的意味执行顺序不同,你可以用浏览器开发者工具按F12打断点进行查看,或者用你用while循环,或者从后向前删除
2017-01-20
最新回答 / 翻车菌
#include <stdio.h>int main() { int score = 7200; //完善一下代码 if(score >= 10000) { printf("钻石玩家"); } else if(score>=5000) { printf("白金玩家"); } else if(score>=1000) { printf("青铜玩家"); ...
2017-01-19
最新回答 / Only_L
#include <stdio.h>//计算考试总分int total(int score[]){ int i; int total = 0; for(i=0;i<=9;i++) { total += score[i]; } return total;} //计算考试最高分数int highest(int score[]){ int i; for(i=0;i<=9;i++) { if(score[i...
2017-01-19
最新回答 / ValdisX
通俗来说的话,“变量的标识符”(其实是“标识符”而不是“标示符”)就是变量的名字。举个简单的例子,int a = 3,a就是变量的标识符,3就是变量的值
2017-01-19
最新回答 / 努力并奋斗
return sum/3;你只写这一句仅仅代表把sum/3的值返回给了这一句的原函数, 并没有调用的语句,如果在主函数中想调用此函数,则以正确调用格式写出函数就ok了。 请采纳
2017-01-19