解题思路:
注意事项:
参考代码:
package com.cx;
import java.util.Scanner;
public class Demo1098 {
public static void main(String[] args) {
int [] arr = new int [11];
int num = 0;
Scanner sc = new Scanner(System.in);
for(int i = 0; i<11; i++){
arr[i] = sc.nextInt();
}
for(int i = 0; i<10; i++){
if(arr[i]<=(arr[10]+30)){//等于号挺重要的
num++;
}
}
System.out.println(num);
sc.close();
}
}
0.0分
0 人评分
C语言训练-排序问题<2> (C++代码)浏览:935 |
不容易系列2 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:1000 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |
勾股数 (C语言代码)浏览:830 |
简单的a+b (C语言代码)浏览:857 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:548 |
数列排序 (C语言代码)浏览:674 |