import java.util.Scanner;
public class Main {
public static void in(int[] array,int N){
for(int i=0;i<9;i++){
System.out.println(array[i]);
if(array[i]<N&&N<array[i+1])
System.out.println(N);
}
}
public static void main(String[] arg){
Scanner sc = new Scanner(System.in);
int[] array = new int[9];
for(int i=0;i<9;i++){
array[i] = sc.nextInt();
}
int N = sc.nextInt();
in(array, N);
}
}
0.0分
0 人评分
上车人数 (C语言代码)浏览:816 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
母牛的故事 (C语言代码)浏览:739 |
回文数字 (C语言代码)浏览:2538 |
核桃的数量 (C语言代码)浏览:726 |
C语言程序设计教程(第三版)课后习题12.1 (C语言代码)浏览:689 |
多输入输出练习2 (C语言代码)浏览:1709 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:584 |
简单的a+b (C语言代码)浏览:531 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:576 |