返回列表 發帖

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

回復 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. }
複製代碼
我是來去無蹤的..

                                ..士豪(Alen)黑輪

TOP

  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. }
複製代碼

TOP

#include   
using namespace std;   
int main(){   
    int a, b;   
     while(cin>>a){   
     b=(1*a*a*a+5*a+6)/6;
     cout<     }   
     return 0;   
}
分數掛蛋的心情像空白的紙,再次期望著奇蹟的到來。

TOP

  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. }
複製代碼
明輝

TOP

  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. }
複製代碼
離離草原上
一歲一枯榮
野火燒不盡
春風吹又生

TOP

  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. }
複製代碼
離離草原上
一歲一枯榮
野火燒不盡
春風吹又生

TOP

TOP

返回列表