標題:
a042 平面圓形切割
[打印本頁]
作者:
buy
時間:
2010-10-16 08:48
標題:
a042 平面圓形切割
對任意正整數n,平面上的n 個圓最多可將平面切成幾個區域?
輸入說明 :
輸出說明 :
範例輸入 :
3 4
範例輸出 :
8 14
作者:
b1081081
時間:
2010-10-16 11:26
/**********************************************************************************/
/* 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吧!!!
作者:
chuangjoy
時間:
2010-10-16 11:27
#include <iostream>
using namespace std;
int main(){
int n, a;
while(cin >> n){
a = n * n - n + 2;
cout << a << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
Alen
時間:
2010-10-30 10:29
include<iostream>
using namespace std;
int main(void){
int x = 0;
while (cin >> x){
cout << x * x - x + 2 << endl;
}
//system("pause");
return 0;
}
複製代碼
回復
1#
buy
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2