码迷,mamicode.com
首页 > 其他好文 > 详细

【005】优化猜数游戏

时间:2015-10-10 14:01:09      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

【题目】改进猜数游戏程序,功能是: 

a.允许用户反复输入数,直至猜中程序选定的数。

b.输入的数如果大于选定的数,则提示“太大了”;如果小于选定的数,则提示“太小了”; 如果等于选定的数,则输出“你赢了”并结束程序。

【解答】

#include<iostream>

using namespace std;

int main()

{

 int a;

 cin>>a;

 while(a!=5)

 {

  if(a<5)

   cout<<"太小了"<<endl;

  else

   cout<<"太大了"<<endl;

  cin>>a;

 }

 cout<<"你赢了!"<<endl;

 return 0;

}

 

【005】优化猜数游戏

标签:

原文地址:http://www.cnblogs.com/leopotter/p/4866671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!