標題:
【036】while 迴圈 (二)
[打印本頁]
作者:
tonyh
時間:
2023-3-15 15:44
標題:
【036】while 迴圈 (二)
利用 while 迴圈, 計算100~200間所有偶數的總合.
public class Ch24{
public static void main(String args[])
{
int sum=0,i=100;
while(i<=200)
{
sum+=i;
i+=2;
}
System.out.println("100~200間所有偶數的總和: "+sum);
}
}
複製代碼
作者:
王捷恩
時間:
2023-3-15 15:58
public class A {
public static void main(String args[])
{
int sum=0,i=100;
while(i<=200)
{
sum+=i;
i+=2;
}
System.out.println("100~200間所有偶數的總和: "+sum);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2