怎样把C语言源代码改成C++的
{printf("pleaseinputstudents'idandscoresinturn:idmathenglishcomputer\n");scanf("%s%d%...
{ printf("please input students' id and scores inturn:id math english computer\n");
scanf("%s%d%d%d",stu[i].num,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
} /*输入学生信息*/
sum_and_aver(stu,N); /*引用计算总分和平均分的函数*/
sort(stu,N); /*引用排序函数*/
printf("This is the list:\n");
printf("rank students'id math english computer sum average\n");
for(i=0;i<N;i++)
printf("%4d %s %4d %7d %8d %3d %.1f\n",i+1,stu[i].num,stu[i].score[0],
stu[i].score[1],stu[i].score[2],stu[i].sum,stu[i].aver);
}
将这段代码改为C++的 展开
scanf("%s%d%d%d",stu[i].num,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
} /*输入学生信息*/
sum_and_aver(stu,N); /*引用计算总分和平均分的函数*/
sort(stu,N); /*引用排序函数*/
printf("This is the list:\n");
printf("rank students'id math english computer sum average\n");
for(i=0;i<N;i++)
printf("%4d %s %4d %7d %8d %3d %.1f\n",i+1,stu[i].num,stu[i].score[0],
stu[i].score[1],stu[i].score[2],stu[i].sum,stu[i].aver);
}
将这段代码改为C++的 展开
7个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询