| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 364 人关注过本帖
标题:麻烦会的人帮我一下
取消只看楼主 加入收藏
virgojian829
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2006-8-18
收藏
 问题点数:0 回复次数:0 
麻烦会的人帮我一下
如果往score[max_length]中输入不是数字的时候,让用户重新输入直到数据合法,这个功能该怎样做啊?希望会的帮下忙
代码:
#include <iostream>
#include <string>
#include <iomanip>
#include <cctype>
using std::cin;
using std::cout;
using std::endl;
using std::string;
int main(){
const int max_length=100;
string name[max_length];
int score[max_length]={0};
double average=0.0;
char sign=0;
int count=0;
do{
cout<<"Please enter the name: ";
cin>>name[count];
cout<<"Please enter the score(0-100): ";
cin>>score[count];
do{
if(score[count]>=0&&score[count]<=100) break;
else if(score[count]<0||score[count]>100){
cout<<endl
<<"The score you enter is "
<<"more than 100 or less than 0!\nTry again!\n";
cout<<"Please enter the score(0-100): ";
cin>>score[count];
continue;
}
}while(true);
average+=score[count];
count++;
cout<<"Do you want to enter another(y or n)? ";
cin>>sign;
cout<<endl;
}while(count<100&&std::tolower(sign)=='y');
average/=count;
for(int i=0;i<count;i++){
cout<<"name: "<<name[i];
cout<<"\tscore: "<<score[i]<<endl;
}
cout<<endl<<"Average is: "<<std::fixed<<average<<endl;
system("pause");
return 0;
}
搜索更多相关主题的帖子: 麻烦 
2007-02-25 20:50
快速回复:麻烦会的人帮我一下
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019081 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved