解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int[] a=new int[50]; int b=0; for (int i = 0; i < a.length; i++) { a[i]=sc.nextInt(); if(a[i]==-1) { b=i-1; break; } } int c=a[0]; for (int i = 1; i <=b; i++) { if(c<a[i]) { c=a[i]; } } System.out.println(c); } }
0.0分
0 人评分
C二级辅导-统计字符 (C语言代码)浏览:782 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)for循环浏览:1178 |
小明A+B (C语言代码)浏览:1316 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:910 |
Hello, world! (C++代码)浏览:1778 |
数对 (C语言代码)浏览:762 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:750 |
星期判断机 (C语言代码)浏览:892 |
陶陶摘苹果2 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:609 |