参考代码:
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] a=new int[10];
for(int i=0;i<10;i++) //输入十个苹果到地面的距离
a[i]=sc.nextInt();
int n=sc.nextInt(),count=0;
for(int r:a) //当小于陶陶站在板凳的距离时count计数
{
if(r<=n+30)
count++;
}
System.out.println(count);
}
}
0.0分
4 人评分
C语言训练-排序问题<1> (C语言代码)浏览:1411 |
C语言程序设计教程(第三版)课后习题12.6 (C语言代码)浏览:816 |
C语言训练-求1+2!+3!+...+N!的和 (C语言代码)浏览:2498 |
回文串 (C语言代码)浏览:3095 |
数组输出 (C语言代码)--此题的题目描述有问题浏览:1844 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1327 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
简单的a+b (C语言代码)浏览:661 |
The 3n + 1 problem (C语言代码)浏览:603 |