求助:c++程序运行结束后提示停止工作 5
用devc运行的,出现结果之后提示停止工作,感觉没有数组越界啊,是不是结构体数组的问题。/#include<iostream>#include<String>#inclu...
用devc运行的,出现结果之后提示停止工作,感觉没有数组越界啊,是不是结构体数组的问题。
/#include <iostream>
#include <String>
#include <stdio.h>
using namespace std;
struct student
{
string name;
string number;
int score[3];
}stu[5];
int main(int argc, char** argv) {
int i=0;
for(i=0;i<5;i++)
{
cout<<"input score of student "<<i+1<<":"<<endl;
cout<<"NO.:";
scanf("%s",&stu[i].number);
cout<<"name:";
scanf("%s",&stu[i].name);
cout<<"score 1:";
scanf("%d",&stu[i].score[0]);
cout<<"score 2:";
scanf("%d",&stu[i].score[1]);
cout<<"score 3:";
scanf("%d",&stu[i].score[2]);
cout<<endl;
}
printf(" NO. name score1 score2 score3\n");
for(i=0;i<=4;i++)
{
printf("%10s%10s%10d%10d%10d",&stu[i].number,&stu[i].name,stu[i].score[0],stu[i].score[1],stu[i].score[2]);
printf("\n");
}
return 0;
} ;
没涉及到指针的问题,内存的话也没看出来是哪里的问题。 展开
/#include <iostream>
#include <String>
#include <stdio.h>
using namespace std;
struct student
{
string name;
string number;
int score[3];
}stu[5];
int main(int argc, char** argv) {
int i=0;
for(i=0;i<5;i++)
{
cout<<"input score of student "<<i+1<<":"<<endl;
cout<<"NO.:";
scanf("%s",&stu[i].number);
cout<<"name:";
scanf("%s",&stu[i].name);
cout<<"score 1:";
scanf("%d",&stu[i].score[0]);
cout<<"score 2:";
scanf("%d",&stu[i].score[1]);
cout<<"score 3:";
scanf("%d",&stu[i].score[2]);
cout<<endl;
}
printf(" NO. name score1 score2 score3\n");
for(i=0;i<=4;i++)
{
printf("%10s%10s%10d%10d%10d",&stu[i].number,&stu[i].name,stu[i].score[0],stu[i].score[1],stu[i].score[2]);
printf("\n");
}
return 0;
} ;
没涉及到指针的问题,内存的话也没看出来是哪里的问题。 展开
2个回答
2017-10-10
展开全部
在VC中执行,是正常的
~~~~~~~~~~~~
~~~~~~~~~~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询