Board logo

標題: [隨堂]if...else 輸入舒張壓收縮壓判斷是否正常 [打印本頁]

作者: 陳品肇    時間: 2019-3-30 10:05     標題: [隨堂]if...else 輸入舒張壓收縮壓判斷是否正常

[attach]6222[/attach]
作者: 李易展    時間: 2019-3-30 11:01

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int a,b;
  8.     cout<<"請輸入收縮壓:";
  9.     cin>>b;
  10.     cout<<"請輸入舒張壓:";
  11.     cin>>a;
  12.     if(b<120 && a<80)
  13.     {cout<<"正常!!"<<endl;}
  14.     else
  15.     {cout<<"不正常!!"<<endl;}
  16.     system("pause");
  17.     return 0;
  18.         
  19. }
複製代碼

作者: 謝蓮金    時間: 2019-3-30 11:02

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int a,b;
  7.     cout<<"請輸入你的舒張壓: ";
  8.     cin>>a;
  9.     cout<<"請輸入你的收縮壓: ";
  10.     cin>>b;
  11.     if(a<=80&&b<=120)
  12.    {
  13.         cout<<"血壓正常"<<endl;
  14.    }
  15.    else
  16.    {
  17.          cout<<"血壓不正常"<<endl;
  18.    }   
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

作者: 洪藜芸    時間: 2019-3-30 11:02

本帖最後由 洪藜芸 於 2019-3-30 11:10 編輯
  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.     if(x <120 && y <80)
  12.     {
  13.          cout<<"正常"<<endl;
  14.     }
  15.     else
  16.     {
  17.          cout<<"有問題,建議詢問醫生"<<endl;
  18.     }
  19.    
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼

作者: 邱楷宸    時間: 2019-3-30 11:03

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    
  7.     int a,b;
  8.     cout<<"請輸入收縮壓:";
  9.     cin>>b;
  10.     cout<<"請輸入舒張壓:";
  11.     cin>>a;
  12.     if(b<=120 && a<=80)
  13.     {cout<<"正常!"<<endl;}
  14.     else
  15.     {cout<<"不正常!"<<endl;}
  16.     system("pause");
  17.     return 0;
  18.         
  19. }
複製代碼

作者: 洪子涵    時間: 2019-3-30 11:03

  1. #include<cstdlib>
  2. #include<iostream>
  3. using namespace std;
  4. int main()
  5. {
  6.    int sho,shu;
  7.    cout<<"請輸入收縮壓=";
  8.    cin>>sho;
  9.    cout<<"請輸入舒張壓=";
  10.    cin>>shu;
  11.    
  12.    if(sho>=120||shu>=80)
  13.    {
  14.     cout<<"血壓過高"<<endl;
  15.    }
  16.    else
  17.    {
  18.     cout<<"血壓正常 "<<endl;
  19.    }
  20.    system("pause");
  21.    return 0 ;
  22.    
  23.    
  24. }
複製代碼

作者: 黃傳耀    時間: 2019-3-30 11:06

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int Diastolic,Systolic;
  7.     cout<<"請輸入收縮壓:";
  8.     cin>>Diastolic;
  9.     cout<<"請輸入舒張壓:";
  10.     cin>>Systolic;
  11.     if(Diastolic<120 && Systolic<80)
  12.     {
  13.      cout<<"收縮壓:"<<Diastolic<<endl<<"舒張壓:"<<Systolic<<endl<<"血壓正常"<<endl;   
  14.     }else
  15.     {
  16.      cout<<"收縮壓:"<<Diastolic<<endl<<"舒張壓:"<<Systolic<<endl<<"血壓不正常"<<endl;     
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 王建葦    時間: 2019-4-3 20:46

  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.     if(x<=120&&y<=80)
  12.     {
  13.       cout<<"良好"<<endl;               
  14.     }
  15.     else
  16.     {
  17.       cout<<"不良好"<<endl;  
  18.     }
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

作者: 陳宇柏    時間: 2019-5-22 14:49

  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.   if(x<120 && y<80)
  12.      cout<<"血壓正常"<<endl;   
  13.   else
  14.      cout<<"血壓偏高"<<endl;     
  15.   system("pause");
  16.   return 0;  
  17. }
複製代碼





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