andy6804tw
8/8/2016 - 3:59 AM

http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=15780 這題可依發現他是個有遞增的數列2 4 7 11 16 分別加2 3 4 5

http://e-tutor.itsa.org.tw/e-Tutor/mod/programming/view.php?id=15780

這題可依發現他是個有遞增的數列2 4 7 11 16 分別加2 3 4 5

import java.util.*;  
  
public class Main {  
    public static void main(String[] args) {  
        Scanner scn = new Scanner(System.in);  
            int num=scn.nextInt(),tot=2;  
            for(int i=1,j=2;i<num;i++,j++){  
                tot+=j;  
            }  
            System.out.println(tot);  
    }  
    /* 
    題目:[C_MM254-易] 切蛋糕問題
    作者:1010
    時間:西元 2016 年 8 月 */
}