65,186
社区成员




#include <iostream>
using namespace std;
int &MyPlus(int &i, int &j)
{
static int temp;
temp = i * j;
return temp;
}
int main()
{
int a = 5;
int b = 6;
int c = 7;
int d = 8;
if (a*b == c*d)
{
cout<<"equal"<<endl;
}
else
{
cout<<"not equal"<<endl;
}
return 0;
}