標題:
while 迴圈 (二)
[打印本頁]
作者:
周政輝
時間:
2018-8-18 14:56
標題:
while 迴圈 (二)
利用 while 迴圈, 計算100~200間所有偶數的總合.
作者:
鄭楀諺
時間:
2018-8-18 15:08
package morris;
public class Main {
public static void main(String[] args) {
int a=100;
int total=0;
while(a<=200)
{
total=total+a;
a=a+2;
}
System.out.println(total);
}
}
複製代碼
作者:
王駿愷
時間:
2018-8-18 15:12
public class Ch22{
public static void main(String args[])
{
int i=100;
int j=0;
while(i<=200)
{
j=j+i;
i=i+2;
}
System.out.println(j);
}
}
複製代碼
作者:
吳秉翰
時間:
2018-8-18 15:22
package bn.tw;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i = 100;
int total = 0;
while (i <= 200) {
i=i+2;
total += i;
}
System.out.println(total);
}
}
複製代碼
作者:
彭煥宇
時間:
2018-8-18 15:22
package bbs.istak.org.tw;
public class Main {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i=100;
int j=0;
while(i<=200)
{
j=j+i;
i=i+2;
}
System.out.println(j);
}
}
複製代碼
作者:
顏詢
時間:
2018-8-18 15:30
package bbs.istak;
public class BB {
public static void main(String[] args) {
// TODO 自動產生的方法 Stub
int i = 100;
int j = 200;
int total=0;
while (i <= j) {
if(i%2==0) {
total=total+i;
}
i++;
}
System.out.println(total);
}
}
複製代碼
作者:
高允懋
時間:
2018-8-23 17:25
public class Hello
{
public static void main(String[] args)
{
int i=100,sum=0;
while(i<=200)
{
sum+=i;
i+=2;
}
System.out.println(sum);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2