標題:
[作業] 計算333~999間所有3的倍數總和
[打印本頁]
作者:
tonyh
時間:
2021-8-12 17:47
標題:
[作業] 計算333~999間所有3的倍數總和
本帖最後由 tonyh 於 2021-8-17 17:39 編輯
試利用 for 迴圈, 計算333~999間所有3的倍數總和.
333+336+339+...+996+999= ?
本帖隱藏的內容需要回復才可以瀏覽
作者:
吳孟修
時間:
2021-8-12 17:59
import java.util.Scanner;
public class Ch01
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
int x=0;
for(int i=333;i<=999;i+=3)
x+=i;
System.out.println("333~999間所有3的倍數總和為:"+x);
}
}
複製代碼
作者:
吳孟書
時間:
2021-8-12 18:19
package ch01;
import java.util.Scanner;
public class hw01
{
public static void main(String[] args)
{
Scanner s=new Scanner(System.in);
int x=0;
for(int i=333;i<=999;i=i+3)
{
x=x+i;
}
System.out.println("333~999所有3的倍數總和為:"+x);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2