返回列表 發帖

a042 平面圓形切割

對任意正整數n,平面上的n 個圓最多可將平面切成幾個區域?



輸入說明 :
輸出說明 :
範例輸入 :

3 4
範例輸出 :

8 14
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

/**********************************************************************************/
/*  Problem: a042 "平面圓形切割" from 許介彥                             */
/*  Language: CPP                                                                 */
/*  Result: AC (32ms, 700KB) on ZeroJudge                                         */
/*  Author: b1081081 at 2010-10-16 11:25:53                                       */
/**********************************************************************************/


#include <iostream>
using namespace std;
int main(){

int n;
while (cin >> n){



cout << n * n - n + 2 << endl;

































































}
return 0;
}

盡情的COPY吧!!!

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main(){
  4.    
  5.     int n, a;
  6.     while(cin >> n){
  7.               a = n * n - n + 2;
  8.               cout << a << endl;
  9.     }
  10.    
  11. system("pause");
  12. return 0;
  13. }
複製代碼

TOP

  1. include<iostream>
  2. using namespace std;
  3. int main(void){

  4.     int x = 0;
  5.    
  6.     while (cin >> x){
  7.           cout << x * x - x + 2 << endl;
  8.     }


  9. //system("pause");
  10. return 0;
  11. }
複製代碼
回復 1# buy
我是來去無蹤的..

                                ..士豪(Alen)黑輪

TOP

返回列表