C++入门小程序:数字竞猜游戏

/*
程序名称:数字竞猜游戏 
程序功能:随机生成一个1-100的整数,让执行者猜数的大小。
编写时间:201*年*月*号;
编写地点:湖南省长沙市岳麓区
编写码农:翼虎小微
调试平台: Dev c++ 5.2.0.3
*/
#include 
using namespace std ;
int main()
 {
    int y=1,m=0,n=0;
    while(y!=0) //控制竞猜轮数 
    { 
        int n = rand() % 100 + 1 ; //伪随机数
        cout << "请猜这个数的值为多少?(0~~100):";
        while(m != n) //控制每轮竞猜次数 
        {
            cin >> m;   //输入的数放在m  
            if (n > m)
                cout << "你猜的值太小了!" << endl;
            else if (n < m)
                cout << "你猜的值太大了!" << endl;
            else
                cout << "你猜对了!" << endl;
        }
cout << "退出猜数字游戏请输入数字0,继续进行下一轮竞猜请输入数字1"<< endl;
    cin>>y;
    } 
    return 0;
} 

你可能感兴趣的:(K12信息学)