返回列表 發帖
本帖最後由 楊芊琦 於 2022-8-13 14:59 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int aint,bint;
  7.     bool abool,bbool;
  8.     cout<<"輸入第一個值:";
  9.     cin>>aint;
  10.     cout<<"輸入第二個值:";
  11.     cin>>bint;
  12.     if(aint==0)
  13.     {
  14.     abool=0;           
  15.     }
  16.     else
  17.     {
  18.     abool=1;   
  19.     }
  20.     //
  21.     if(bint==0)
  22.     {
  23.     bbool=0;           
  24.     }
  25.     else
  26.     {
  27.     bbool=1;   
  28.     }
  29.     //
  30.     if(abool&&bbool)
  31.     {
  32.     cout<<"true"<<endl;
  33.     }
  34.     else
  35.     {
  36.     cout<<"false"<<endl;   
  37.     }
  38.     system("pause");
  39.     return 0;
  40. }
複製代碼

TOP

返回列表