import java.util.Scanner;

public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int d = 0;
int b[] = new int[10];
for (int i = 0; i <= 9; i++) {
int a = sc.nextInt();
b[i] = a;
}
int c = sc.nextInt();
for(int i = 0 ; i<=9;i++) {
if(b[i]<=c+30) {
d++;
}
}System.out.println(d);
}
}

最新文章

  1. Sql Server系列:分区表操作
  2. ORA-04063: view &quot;SYS.DBA_REGISTRY&quot; has errors
  3. 浅谈Android下的Bitmap之大Bitmap加载
  4. es6 ... 表达
  5. 学习笔记:调用js文件冲突问题解决方案
  6. lintcode :Remove Duplicates from Sorted List 删除排序链表中的重复元素
  7. Python自动化运维之28、Django(二)
  8. Delphi 在使用exports中的方法 带参数的用法
  9. VirtualBox虚拟机安装RedHat7.3编译Linux0.01内核
  10. Swift学习之构造方法
  11. bzoj2806 [Ctsc2012]Cheat
  12. c# 多种方法调整屏幕亮度
  13. springboot使用@data注解,减少不必要代码
  14. [转]MYSQL 创建存储过程
  15. JIT(Just in time,即时编译,边运行边编译)、AOT(Ahead Of Time,运行前编译),是两种程序的编译方式
  16. c指针类型的作用
  17. ROS教程0 环境配置
  18. Singer 学习二 使用Singer进行gitlab 2 postgres 数据转换
  19. MongoDB 比较适用哪些业务场景?
  20. shiro web 集成

热门文章

  1. 什么是HTTP
  2. AndroidStudio3.6升级后的坑-apk打包
  3. 【转】46个Linux常用命令
  4. wangeditor在移动端的web应用
  5. Android fragment 使用replace并保存状态
  6. Spring全家桶之SpringMVC(三)
  7. gRPC负载均衡(客户端负载均衡)
  8. Python格式化字符串(格式化输出)
  9. React组件proptypes, ref
  10. vue 事件修饰符(阻止默认行为和事件冒泡)