Board logo

標題: a044 空間切割 [打印本頁]

作者: buy    時間: 2010-10-30 08:49     標題: a044 空間切割

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



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

1 2
範例輸出 :

2 4

==================================
[對任意正整數n,空間中的n 個平面最多可將空間切成幾個區域?]
http://www.sec.ntnu.edu.tw/Monthly/91(246-255)/252/21%E9%81%9E%E8%BF%B4%E9%BB%9E%E7%B7%9A%E9%9D%A2.pdf
作者: Alen    時間: 2010-10-30 10:22

回復 1# buy
  1. /* 對任意正整數 n,空間中的 n 個平面最多可將空間切成幾個區域? */
  2. #include <iostream>
  3. #include <cstdlib>
  4. using namespace std;
  5. int main(void){
  6.     int a;
  7.     while (cin >> a){
  8.           a = (1*a*a*a + 5*a + 6)/6;
  9.           cout << a << endl;
  10.     }
  11.     //system("pause");
  12.     return 0;
  13. }
複製代碼

作者: chuangjoy    時間: 2010-10-30 10:26

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(void){
  5.    
  6.     int x;
  7.     while (cin >> x){
  8.           x = (1*x*x*x + 5*x + 6)/6;
  9.           cout << x << endl;
  10.     }
  11.    
  12.     return 0;
  13. }
複製代碼

作者: p17johnny    時間: 2010-10-30 11:39

#include   
using namespace std;   
int main(){   
    int a, b;   
     while(cin>>a){   
     b=(1*a*a*a+5*a+6)/6;
     cout<     }   
     return 0;   
}
作者: abc3806198    時間: 2010-11-6 09:39

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

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


  9.     return 0;

  10. }
複製代碼

作者: b1081081    時間: 2010-11-13 10:25

  1. #include <iostream>

  2. #include <cstdlib>

  3. using namespace std;

  4. int main(void){

  5.     int a;

  6.     while (cin >> a){

  7.           a = (1*a*a*a + 5*a + 6)/6;

  8.           cout << a << endl;

  9.     }

  10.     //system("pause");

  11.     return 0;

  12. }
複製代碼

作者: b1081081    時間: 2010-11-13 10:26

  1. #include <iostream>

  2. #include <cstdlib>

  3. using namespace std;

  4. int main(void){

  5.     int a;

  6.     while (cin >> a){

  7.           a = (1*a*a*a + 5*a + 6)/6;

  8.           cout << a << endl;

  9.     }

  10.     //system("pause");

  11.     return 0;

  12. }
複製代碼

作者: 小乖乖w    時間: 2011-7-9 02:30

很不错,值得鼓励,。。。













伊雅特伊雅特服饰专营店伊雅特官网伊雅特旗舰店




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2