用户:
原带马查看:0 回复:0 评论:0 创建时间:2021-03-14T15:00:15
#include<iostream>
using namespace std;
int main()
{
int shu = 0;
cout << "随便输入一个难度";
cin >> shu;
int da;
if (shu <=10)
{
cout << "不好,没有精神" << endl;
cout << "10000 * 3 / 4+3-444+45-3+6-2+5=????" << endl;
cin >> da;
if (da == 10000 * 3 / 4+3-444+45-3+6-2+5 )
{
cout << "对了?!";
}
else
{
cout << "这都能错!!!!";
}
}//no精神
if (shu > 10)
{
cout << "好,很有精神!!!!!!!!!" << endl << "那就来个简单点的" << endl << "1+1!=????" << endl;
cin >> da;
if (da!=1+1 )
{
cout << "对了";
}
else
{
cout << "这都不对!!建议回幼儿园";
}
}//have精神
}