c++ 如何定义两个变量 (int a,b)并且给这两个变量赋值 再比较两变量是否一致 如果一致 舍弃b

如果不一致 则显示b的数据@adoqq_bd 可以帮助解答么?
2024-12-04 10:30:28
推荐回答(3个)
回答1:

#include
using namespace std;

int main(){ 

 int a,b; 

 int i = 1;

 cout<<"Please Input a, b"<

  cin>>a>>b; 

  cout<<"*************************"<

   if(a!=b) {

     cout<<"b != a"<

      cout<<"b = "<

      } 

      else

 {

  cout <<"b = a"<

  cout <<"Drop b"<

 } 

 cout<<"*************************"<

 cout<<"If you want to enter another b ?"<

 cout<<"1 for yes   |   0 for no"<

 cin>>i;

 while(i)

 {

  cout<<"Please Input  b"<

  cin>>b;

  cout<<"*************************"<

    if(a!=b) {

      cout<<"b != a"<

       cout<<"b = "<

       } 

       else

  {

   cout <<"b = a"<

   cout <<"Drop b"<

  } 

  cout<<"*************************"<

  cout<<"If you want to enter another b ?"<

  cout<<"1 for yes   |   0 for no"<

  cin>>i;

 }

  return 0;

 }

不太清楚你是否想要这样的效果。纯手打,望采纳!~

回答2:

#include
using namespace std;
int main()
{
int a,b;
cout<<"Please enter two numbers:\n";
cin>>a>>b;
if(a==b)
{
cout< }
else
cout<system ("pause");
return 0;
}

回答3:

#include
using namespace std;
int main()
{
int a,b;
cout<<""< cin>>a>>b;
if(a!=b)
{
cout< }
else
a=b=0;
return 0;
}