#19617: JAVA AC


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
a215. 明明愛數數 | From: [210.63.221.246] | 發表日期 : 2019-10-13 22:44

感謝 ss0935565 大大的解釋 看完就懂了

import java.util.Scanner;

public class a215 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);

while(sc.hasNext()) {

int n = sc.nextInt();
int m = sc.nextInt();
int judge = 1;
int total=n;
while(m>=total) {
total+=(++n);
++judge;
}
System.out.println(judge);
}

}

}

 
ZeroJudge Forum