码迷,mamicode.com
首页 > 编程语言 > 详细

小学生趣味C++编程第47课 称心如意的输入

时间:2020-04-15 01:11:59      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:cpp   编程   turn   name   out   c++编程   end   cout   mes   

#include<iostream>
using namespace std;
int main()
{
  float x; 
  cout<<"请输入成绩:";
  do
  {
    cin>>x;
  }while(x<0||x>100);
  cout<<"成绩:"<<x<<endl;
  return 0;
}

  

小学生趣味C++编程第47课 称心如意的输入

标签:cpp   编程   turn   name   out   c++编程   end   cout   mes   

原文地址:https://www.cnblogs.com/kixiaoyuan/p/12702280.html

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