猿问

新人求助!c++里用什么读取回车符?

#include<iostream.h>
struct student{
 char name[2];
 int score[4];
 int average;
};
void main(){
 student stu;
 int sum=0;
 int i;
 cout<<"Enter the name:";
 cin>>stu.name;
 cout<<"Enter the scores:";
 for(i=0;i<4;i++){
  cin>>stu.score[i];
 }

输完名字后按回车键程序直接结束,无法输入分数,是因为回车符号的影响吗?

蒙麵女俠
浏览 2118回答 2
2回答
随时随地看视频慕课网APP
我要回答