Board logo

標題: [作業] 三角形面積 [打印本頁]

作者: tonyh    時間: 2013-3-9 15:06     標題: [作業] 三角形面積

設計一三角形面積計算程式.
作者: 黃崇維    時間: 2013-3-9 18:52

本帖最後由 黃崇維 於 2013-3-9 18:53 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float x, y;
  7.     cout<<"請輸入三角形的底(公分): ";
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分): ";
  10.     cin>>y;
  11.     cout<<"底為"<<x<<"公分,高為"<<y<<"公分的三角形,面積為"<<
  12.           (x*y)/2<<"平方公分"<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 劉泳鱔    時間: 2013-3-9 22:28

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std
  4. int main()
  5. {
  6.     float x, y;
  7.     cout<<"請輸入三角形的底(公分): ";
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高(公分): ";
  10.     cin>>y;
  11.     cout<<"底為"<<x<<"公分,高為"<<y<<"公分的三角形,面積為"<<
  12.           (x*y)/2<<"平方公分"<<endl;
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 林以諾    時間: 2013-3-12 20:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. int x,y;
  7. cout<<"請輸入三角形的底(單位:公分):";
  8. cin>>x;
  9. cout<<"請輸入三角形的高(單位:公分):";
  10. cin>>y;
  11. cout<<"當三角形的底為"<<x<<"公分,"<<"三角形的高為"<<y<<"公分,""三角形的面積為"<<x*y/2<<endl;

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

作者: 林鎧言    時間: 2013-3-12 22:09

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         float x,y;
  7.         cout<<"請輸入三角型的底(公分):";
  8.         cin>>x;
  9.         cout<<"請輸入三角形的高(公分):";
  10.         cin>>y;
  11.         cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.         system("pause");
  13.         return 0;
  14. }
複製代碼

作者: 許逸群    時間: 2013-3-16 10:14

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      float x,y;

  7.         cout<<"請輸入三角型的底(公分):";
  8.         cin>>x;
  9.         cout<<"請輸入三角形的高(公分):";
  10.         cin>>y;
  11.         cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.         system("pause");
  13.         return 0;

  14. }
複製代碼

作者: 許逸群    時間: 2013-3-16 10:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      float x,y;

  7.         cout<<"請輸入三角型的底(公分):";
  8.         cin>>x;
  9.         cout<<"請輸入三角形的高(公分):";
  10.         cin>>y;
  11.         cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.         system("pause");
  13.         return 0;

  14. }
複製代碼

作者: 郭凡瑛    時間: 2013-3-16 12:35

  1.     #include<iostream>
  2.     #include<cstdlib>
  3.     using namespace std;
  4.     int main()
  5.     {
  6.             float x,y;
  7.             cout<<"請輸入三角型的底(公分):";
  8.             cin>>x;
  9.             cout<<"請輸入三角形的高(公分):";
  10.             cin>>y;
  11.             cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.             system("pause");
  13.             return 0;
  14.     }
複製代碼

作者: 蘇昱安    時間: 2013-3-16 13:25

  1. #include<iostream>

  2. #include<cstdlib>

  3. using namespace std;
  4. int main()
  5. {
  6.         float x,y;
  7.         cout<<"請輸入三角型的底(公分):";
  8.         cin>>x;
  9.         cout<<"請輸入三角形的高(公分):";
  10.         cin>>y;
  11.         cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<x*y/2<<"平方公分"<<endl;
  12.         system("pause");
  13.         return 0;

  14. }
複製代碼

作者: 黃柏維    時間: 2013-3-16 14:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. float x,y;
  7. cout<<"請輸入三角形的底(公分): ";
  8. cin>>x;
  9. cout<<"請輸入三角形的高(公分): ";
  10. cin>>y;
  11. cout<<"上底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<
  12. (x*y)/2<<"平方公分"<<endl;
  13. system("pause");
  14. return 0;
  15. }
複製代碼

作者: 張瀚仁    時間: 2013-3-22 20:43

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x ,y ,;
  7.     cout<<"請輸入三角形的底長: ";
  8.     cin>>x;
  9.     cout<<"請輸入三角形的高: ";
  10.     cin>>y;
  11.     cout<<"底"<<x<<"公分,高"<<y<<"公分的三角形,其面積為"
  12.         <<x*y/2<<"平方公分"<<endl;   
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼

作者: 長逸    時間: 2013-5-25 11:57

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6. float x,y;
  7. cout<<"請輸入三角形的底(公分): ";
  8. cin>>x;
  9. cout<<"請輸入三角形的高(公分): ";
  10. cin>>y;
  11. cout<<"上底"<<x<<"公分,高"<<y<<"公分的三角形,面積為"<<
  12. (x*y)/2<<"平方公分"<<endl;
  13. system("pause");
  14. return 0;
  15. }
複製代碼

作者: 長逸    時間: 2013-5-25 11:57

  1. 123456789
複製代碼





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