標題:
[隨堂測驗] 迴圈正偶數相加 TQC+ 310
[打印本頁]
作者:
周政輝
時間:
2017-4-8 10:49
標題:
[隨堂測驗] 迴圈正偶數相加 TQC+ 310
請計算 2+4+6+....+N的總和
作者:
張健勳
時間:
2017-4-8 11:04
import java.util.Scanner;
public class JPA03 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
int sum=0;
do {
System.out.println("請輸入n的值 ( n > 0 ,且為偶數)");
int n = keyboard.nextInt();
if(n % 2 == 0&&n > 0){
for(int i=2; i<=n; i+=2){
sum+=i;
}
System.out.println("2+4+...+"+n+"="+sum);
break;
}else{
System.out.println("請輸入n的值 ( n > 0 ,且為偶數)");
n = keyboard.nextInt();
}
} while( true );
}
}
複製代碼
作者:
王彥甯
時間:
2017-4-8 11:10
import java.util.Scanner;
public class JPA03 {
static Scanner keyboard = new Scanner(System.in);
public static void main(String[] args) {
do
{
System.out.print("請輸入n的值(n>0,且為偶數):");
int total = 0;
int n = keyboard.nextInt();
if(n%2==0&&n>0)
{
for(int i=2;i<=n;i+=2)
{
total += i;
}
System.out.printf("2+4+...+%d=%d",n,total);
break;
}
else
{
System.out.print("請輸入n的值(n>0,且為偶數):");
n = keyboard.nextInt();
}
}
while(true);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2