用c++.编写判断两个数是否相等的程序

2025-03-25 20:39:58
推荐回答(1个)
回答1:

这个还要问啊、、、
#include
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a==b)
cout<<"两个数相等"< else cout<<"两个数不相等"< return 0;
}