解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] arr = new int[n]; for (int i = 0; i < arr.length; i++) { arr[i] = sc.nextInt(); } int count = 0; for (int i = 0; i < arr.length; i++) { if (arr[i] != 0) { System.out.print(arr[i]+" "); count++; } } System.out.println("\n"+count); } }
0.0分
4 人评分
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
简单的a+b (C语言代码)浏览:685 |
C二级辅导-同因查找 (C语言代码)浏览:705 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:607 |
数组输出 (C语言代码)浏览:811 |
【绝对值排序】 (C语言代码)浏览:832 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:592 |
小O的数字 (C语言代码)浏览:1490 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:2207 |