本帖最後由 楊芊琦 於 2022-8-13 14:59 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int aint,bint;
- bool abool,bbool;
- cout<<"輸入第一個值:";
- cin>>aint;
- cout<<"輸入第二個值:";
- cin>>bint;
- if(aint==0)
- {
- abool=0;
- }
- else
- {
- abool=1;
- }
- //
- if(bint==0)
- {
- bbool=0;
- }
- else
- {
- bbool=1;
- }
- //
- if(abool&&bbool)
- {
- cout<<"true"<<endl;
- }
- else
- {
- cout<<"false"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |