標題:
陣列之練習
[打印本頁]
作者:
李泳霖
時間:
2023-2-6 14:22
標題:
陣列之練習
[attach]15123[/attach]
public class Ch03 {
public static void main(String[] args) {
int num=0;//存放大於50的個數
int num2=0;//存放小於50的個數
int [] a=new int []{20,45,78,34,16,3,99,56};
/*
* 請使用迴圈找出a陣列大於50的個數幾個
* .
* .
*/
System.out.println("大於50的個數為:"+num);
/*
* 請使用迴圈找出a陣列小於於50的個數幾個
* .
* .
*/
System.out.print("小於50的個數為:"+num2);
}
}
複製代碼
作者:
余俊霆
時間:
2023-2-6 14:35
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2