解题思路:
注意事项:
参考代码:
import java.awt.List; import java.util.ArrayList; import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int count = sc.nextInt();//数组长度 int b = sc.nextInt();//整除b int[] arr = new int[count];//声明数组 for (int i = 0; i < arr.length; i++) { arr[i] = sc.nextInt(); } Arrays.sort(arr); ArrayList<Integer> List = new ArrayList<Integer>(); for (int i = 0; i < arr.length; i++) { if (arr[i]%b != 0) { List.add(arr[i]); } } for (int i : List) { if ((i)>= 65 && (i)<=90) { System.out.print((char)(i)+" "); } else { System.out.print((i)+" "); } } } }
0.0分
2 人评分
C语言考试练习题_一元二次方程 (C语言代码)浏览:708 |
众数问题 (C++代码)浏览:1288 |
IP判断 (C语言代码)浏览:992 |
C语言训练-计算1~N之间所有奇数之和 (C语言代码)浏览:757 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:626 |
A+B for Input-Output Practice (VII) (C++代码)浏览:643 |
字符串问题 (C语言代码)浏览:1635 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
字符串比较 (C语言代码)答案错误????浏览:641 |
C语言考试练习题_排列 (C语言代码)浏览:767 |