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

C++入门经典-例3.4-根据成绩划分等级

时间:2017-09-11 21:24:08      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:hid   c++   col   std   cin   代码   bsp   view   ++   

1:代码如下:

技术分享
// 3.4.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
using namespace std;
void main()
{
    cout<<"输入成绩"<<endl;
    int iInput;
    cin >> iInput;
    if(iInput>=90)
    {
        cout << "优秀" <<endl;
    }
    else if(iInput>=80&& iInput<90)
    {
        cout << "良好" <<endl;
    }
    else if(iInput>=70 && iInput <80)
    {
        cout << "一般" <<endl;
    }
    else if(iInput>=60 && iInput <70)
    {
        cout << "及格" <<endl;
    }
    else if(iInput<60&&iInput>=0)
    {
        cout << "考试不及格,请再加把劲" <<endl;
    }
    else
    {
        cout<<"输入有误"<<endl;
    }
}
View Code

运行结果:

技术分享

 

C++入门经典-例3.4-根据成绩划分等级

标签:hid   c++   col   std   cin   代码   bsp   view   ++   

原文地址:http://www.cnblogs.com/lovemi93/p/7506596.html

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