2015年C++第三周,任务二:输入几个学生的成绩,用空格隔开,利用容器vector输出成绩,并显示各个等级的数量。

任务二:输入几个学生的成绩,用空格隔开,利用容器vector输出成绩,并显示各个等级的数量。

2-14

#include "stdafx.h"
#include <cstddef>
#include <vector>
#include <algorithm>
#include <string>
#include <ios>
#include <iostream>
using namespace std;
int main()
{
	// count the number of grades by clusters of ten:
	// 0--9, 10--19, . . . 90--99, 100
	vector<int> scores(11, 0);
	vector<int> grades;//store the grades
	vector<string> L = { "J", "I", "H", "G", "F", "E", "D", "C", "B", "A", "A++" };
    int grade;
	char ch;
	cout << "please input the grades of students(以!+回车结尾,各个输入数之间用空格隔开):" << endl;
	while ((cin >> grade )&& ((ch = getchar()) != '\n'))
	{
		if (grade <= 100)
			// increment the count
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值