#20210: 求問 送出解答後 卡在側資點02 那一大串數字


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
b971. 等差數列 -- 板橋高中教學題 | From: [120.119.33.43] | 發表日期 : 2019-12-13 21:54

import java.util.Scanner;

public class c971 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc= new Scanner(System.in);
int a1 = sc.nextInt();
int an = sc.nextInt();
int r = sc.nextInt();
int round = Math.abs((a1+an)/r); //算項數
if(a1==an) {
System.out.print(a1);
}else {
for(int i=0 ; i<=round ; i++) {
System.out.print((a1+i*r)+" ");

}
}

}

}

 

 
ZeroJudge Forum