返回列表 發帖

面積計算程式

1. 試做一個圓形面積計算程式 (可自行指定半徑值)
2. 試做一個三角形面積計算程式 (可自行指定長與高)

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入圓的半徑"<<endl;
  7.     cin>>x;
  8.     cout<<"圓的面積是"<<x*x*3.14<<endl;
  9.    
  10.    
  11.    
  12.    
  13.    
  14.    
  15.    
  16.    
  17.    
  18. system("pause");
  19.   return 0;   
  20. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.     int x;

  6.     cout<<"請輸入圓的半徑"<<endl;

  7.     cin>>x;

  8.     cout<<"圓的面積是"<<x*x*3.14<<endl;

  9.     system("pause");

  10.   return 0;   

  11. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入你要的半徑"<<endl;
  7.     cin>>x;
  8.     cout<<"你的圓面積為"<<endl;
  9.     cout<<x<<"*"<<x<<"*3.14="<<x*x*3.14<<endl;
  10.    
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入圓的半徑:";
  7.     cin>>x;
  8.     cout<<"圓的面積是:"<<x*x*3.14<<endl;
  9.    
  10.     system("pause");
  11.     return 0;
  12. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int y;
  6.     cout<<"請輸入您要的半徑(單位:公分)"<<endl;
  7.     cin>>y;
  8.     cout<<y<<"*"<<y<<"*3.14="<<y*y*3.14<<endl;
  9.     system("pause");
  10.     return 0;
  11. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    cout<<"歡迎進入炫宗的圓面積計算程式"<<endl;
  7.    cout<<"請輸入圓形半徑"<<endl;
  8.    cin>>x;
  9.    cout<<"您輸入的數字是"<<x<<endl;
  10.    cout<<"答案是..."<<endl;
  11.    cout<<x<<"*"<<x<<"*3.14="<<x*x*<<endl;


  12.    system("pause");
  13.    return 0;
  14. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"請輸入你要的半徑(cm)"<<endl;
  7.     cin>>x;
  8.     cout<<"你的圓面積為"<<endl;
  9.     cout<<x<<"*"<<x<<"*3.14="<<x*x*3.14<<"平方公分"<<endl;
  10.    
  11.    
  12.    
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std;

  3. int main()

  4. {

  5.     int x;
  6.     int y;

  7.     cout<<"請輸入高"<<endl;

  8.     cin>>x;

  9.     cout<<"請輸入底"<<endl;
  10.    
  11.     cin>>y;
  12.    
  13.     cout<<"面積為"<<x*y/2<<endl;
  14.      
  15. system("pause");

  16.   return 0;   

  17. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int y;
  7.    cout<<"歡迎進入炫宗的三角形面積計算程式"<<endl;
  8.    cout<<"請輸入長"<<endl;
  9.    cin>>x;
  10.    cout<<"請輸入高"<<endl;
  11.    cin>>y;
  12.    cout<<"您輸入的長是"<<x<<"您輸入的高是"<<y<<endl;
  13.    cout<<"答案是..."<<endl;
  14.    cout<<x<<"*"<<y<<"/2="<<x*y/2<<endl;


  15.    system("pause");
  16.    return 0;
  17. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cout<<"***圓型面積計算程式***"<<endl;
  7.     cout<<"請輸入指定的半徑(公分):";
  8.     cin>>x;
  9.     cout<<"半徑"<<x<<"公分的圓,面積為"<<x*x*3.14<<
  10.     "平方公分"<<endl;
  11.    
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int y;
  7.    cout<<"三角形面積計算程式"<<endl;
  8.    cout<<"請輸入底(cm)"<<endl;
  9.    cin>>x;
  10.    cout<<"請輸入高(cm)"<<endl;
  11.    cin>>y;
  12.    cout<<"您輸入的長是"<<x<<"您輸入的高是"<<y<<endl;
  13.    cout<<"答案是..."<<endl;
  14.    cout<<x<<"*"<<y<<"/2="<<x*y/2<<endl;

  15.    system("pause");

  16.    return 0;

  17. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.    int x;
  6.    int y;
  7.    cout<<"三角形面積計算(單位:公分)"<<endl;
  8.    cout<<"請輸入底"<<endl;
  9.    cin>>x;
  10.    cout<<"請輸入高"<<endl;
  11.    cin>>y;
  12.    cout<<"您輸入的底是"<<x<<"您輸入的高是"<<y<<endl;
  13.    cout<<"答案是..."<<endl;
  14.    cout<<x<<"*"<<y<<"/2="<<x*y/2<<endl;
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     int y;
  7.     cout<<"請輸入底"<<endl;
  8.     cin>>x;  
  9.    
  10.     cout<<"請輸入高"<<endl;
  11.     cin>>y;
  12.    cout<<"三角形的面積是"<<x*y<<"平方公分"<<endl;
複製代碼

TOP

返回列表