解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String args[]) { Scanner sc = new Scanner(System.in); while(sc.hasNext()) { int n = sc.nextInt(); int m = sc.nextInt(); if(n==0&&m==0) break; int a[] = new int[n]; a[0] = sc.nextInt(); if(m<a[0]) System.out.print(m+" "+a[0]); else System.out.print(a[0]+" "); for(int i=1;i<a.length;i++) { a[i] = sc.nextInt(); if(m>a[i-1]&&m<a[i]) { System.out.print(m+" "); } System.out.print(a[i]+" "); } } } }
0.0分
1 人评分
假币问题 (C语言代码)浏览:2658 |
点我有惊喜!你懂得!浏览:1564 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码) 如果a<0,那就不是这个代码了,哈哈哈哈浏览:1306 |
C二级辅导-计负均正 (C语言代码)浏览:652 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:654 |
C语言训练-立方和不等式 (C语言代码)浏览:779 |
字符串问题 (C语言代码)浏览:1636 |
计算质因子 (C++代码)浏览:1828 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:485 |
演讲大赛评分 (C语言代码)浏览:1697 |