java演算法 藍橋杯(題+答案) 生日蠟燭

來源:互聯網
上載者:User

標籤:blog   java   多少   main   藍橋杯   party   system   logs   i++   

2.生日蠟燭  (結果填空)

某君從某年開始每年都舉辦一次生日party,並且每次都要吹熄與年齡相同根數的蠟燭。
現在算起來,他一共吹熄了236根蠟燭。
請問,他從多少歲開始過生日party的?
請填寫他開始過生日party的年齡數。
注意:你提交的應該是一個整數,不要填寫任何多餘的內容或說明性文字。

 1 public class _2生日蠟燭 { 2     public static void main(String[] args) { 3         for (int i = 1; i <= 100; i++) { 4             for (int j = 1; j <= 100; j++) { 5                 if ((((j+1)*i)+(j*(j+1))/2) == 236) { 6                     System.out.println(i); 7 //                    System.out.println(j); 8                 } 9             }10         }11     }12 }

運行結果:26

java演算法 藍橋杯(題+答案) 生日蠟燭

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.