题目内容:
输入若干学生的成绩,统计各班的成绩的平均值,并按班级名称的机内码从小到大排序输出。学生成绩信息包括:班级,学号和成绩。班级名称是"000"'时表示成绩输入结束。班级名称不超过20字符,学号不超过10个字符,成绩为整数,平均成绩为双精度实数,保留三位小数。班级数不超过10个,总人数不超过100个。
输入格式:
若干行,每行信息包括班级,学号和成绩,用空格隔开,最后一行为:000 000 000
输出格式:
若干行,每行信息包括:班级和平均成绩,中间用一个空格隔开。行数由输入中的班级数确定。
输入样例:
航天 001 80
信计 001 90
航天 002 70
航天 003 80
信计 002 91
000 000 000
输出样例:
航天 76.667
信计 90.500
#include
#include
#include
using namespace std;
struct student{
char name[21];
int sum;
int num;
}pStudent[11];
int main()
{
char name[21], num[11];
int score;
int j = 0, t = 0, i, temp = 0;
while (1) {
cin >> name >> num >> score;
temp = 0;//是否找到的标记
if (strcmp(name, "000") == 0)
break;
for (i = 0; i < j; i++) {
if (strcmp(pStudent[i].name, name) == 0)
{
pStudent[i].sum += score;
pStudent[i].num++;
temp = 1;
}
}
if (temp == 0)
{
strcpy(pStudent[j].name, name);
pStudent[j].sum += score;
pStudent[j].num++;
j += 1;
}
}
for (i = 0; i < j; i++)
{
for(t=0;t<j-i-1;t++)
{
if (strcmp(pStudent[t].name, pStudent[t + 1].name) > 0) {
struct student tt;
tt = pStudent[t];
pStudent[t] = pStudent[t + 1];
pStudent[t + 1] = tt;
}
}
}
for (i = 0; i < j; i++) {
cout << pStudent[i].name<<" ";
printf("%.3f\n", 1.0 * pStudent[i].sum / pStudent[i].num);
}
return 0;
}
定义时间类,私有成员时、分、秒,整型;成员函数:set()设置时间,add()加时间,show()显示时间。编写主函数,定义时间类对象,用户输入时间的时、分、秒,设置对象的时间为用户输入的时、分、秒,用户再输入时间(表示时间长度),计算第1个之间加第2个时长后的时间,格式为hh:mm:ss,24小时制,最小时刻为00:00:00,最大时刻为23:59:59。输入:两行,每行三个整数,第一行为某时刻,第2行为某时长的时、分、秒。输出:两行,加之前的时刻,加之后的时刻。
【输入输出样例】
输入:
8 59 59
0 0 2
输出:
08:59:59
09:00:01
#include
using namespace std;
class MyTime
{
private:
int hour, minute, second;
public:
MyTime(){ hour = 0; minute = 0; second = 0; }
MyTime(int, int, int);
void print_12();
void print_24();
void set_time(int, int, int);
MyTime add(int,int,int);
MyTime subtract(int, int, int);
};
MyTime::MyTime(int a, int b, int c)
{
hour = (a >= 0 && a <= 23) ? a : 0;
minute = (b >= 0 && b <= 59) ? b : 0;
second = (c >= 0 && c <= 59) ? c : 0;
}
void MyTime::print_12()
{
if (hour < 12)
{
printf("%02d:%02d:%02d AM", hour, minute, second);
}
else
{
printf("%02d:%02d:%02d PM", hour-12, minute, second);
}
cout << endl;
}
void MyTime::print_24()
{
printf("%02d:%02d:%02d", hour, minute, second);
cout << endl;
}
void MyTime::set_time(int a, int b, int c)
{
hour = (a >= 0 && a <= 23) ? a : 0;
minute = (b >= 0 && b <= 59) ? b : 0;
second = (c >= 0 && c <= 59) ? c : 0;
}
MyTime MyTime::add(int a,int b,int c)
{
MyTime t0=*this;
t0.hour = hour + a;
t0.minute = minute + b;
t0.second = second + c;
if (t0.second >= 60)
{
t0.second -= 60;
t0.minute++;
}
if (t0.minute >= 60)
{
t0.minute -= 60;
t0.hour++;
}
if (t0.hour >= 24)
{
t0.hour -= 24;
}
return t0;
}
MyTime MyTime::subtract(int a, int b, int c)
{
MyTime t0 = *this;
t0.hour = hour - a;
t0.minute = minute - b;
t0.second = second - c;
if (t0.second < 0)
{
t0.second += 60;
t0.minute--;
}
if (t0.minute < 0)
{
t0.minute += 60;
t0.hour--;
}
if (t0.hour < 0)
{
t0.hour += 24;
}
return t0;
}
int main()
{
MyTime t1,t2,t3,t4;
int a, b, c;
cin >> a >> b >> c;
t1.set_time(a, b, c);
cin >> a >> b >> c;//待加减的时间
t3 = t1.add(a, b, c);//t1加输入时间
t1.print_24();t3.print_24();
return 0;
}
题目内容:
编写程序,输入一个含数字的字符串,找出其中的整数(不考虑正负),将每个整数乘以3输出。
输入格式:
一个字符串,长度不超过100,无空格。
输出格式:
若干整数,用空格隔开,末尾无空格。
输入样例:
beijing1001xian876shanghai1237endl
输出样例:
3003 2628 3711
#include
#include
using namespace std;
void findnum(string & ch);
bool isnum(char n);
int main()
{
string m ;
while (cin>>m&&cin.get() != '\n');
findnum(m);
return 0;
}
void findnum(string & ch)
{
int k = ch.size();
int * num = new int[k];
int result;
int n = 0;
int i = 0;
while (n<k) {
result = 0;
if (isnum(ch[n]))
{
result = ch[n] - '0';
while (n<k&&isnum(ch[++n]))
result = (ch[n] - '0') + 10 * result;
num[i++] = result;
}
++n;
}
for (int j = 0; j <i; ++j){
cout << num[j] *3;;
if(j < i -1)
cout << " ";
}
}
bool isnum(char n)
{
return (n >= '0'&&n <= '9');
}