解题思路:
注意事项:
参考代码:
#define _CRT_SECURE_NO_WARNINGS #include int main() { int apple_hight[10] = {0};//苹果高度 int taotao = 0;//陶陶高度 int count = 0;//能拿到的苹果数 for (int apple_num = 0; apple_num < 10; apple_num++) { scanf("%d", &apple_hight[apple_num]); } scanf("%d", &taotao); for (int i = 0; i < 10; i++) { if (apple_hight[i] <= taotao+30) { count++; } } printf("%d",count); return 0; }
0.0分
0 人评分
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码)浏览:664 |
宏定义浏览:899 |
Biggest Number (错误代码时间超限制)浏览:2265 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:618 |
C语言训练-尼科彻斯定理 (C++代码)浏览:680 |
人见人爱A+B (C语言代码)浏览:866 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:612 |
简单的a+b (C语言代码)浏览:827 |
C语言程序设计教程(第三版)课后习题8.2 (C语言代码)浏览:5275 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:388 |