标题:这个程序错在哪了?
取消只看楼主
心爱的远方
Rank: 2
等 级:论坛游民
帖 子:13
专家分:20
注 册:2011-5-11
结帖率:33.33%
已结贴  问题点数:20 回复次数:1 
这个程序错在哪了?
#include<iostream.h>
#define M 2;
    struct student
    {
        char name[80];
        int age;
        char add[80];
    };
void main()
{int i;student stu[M];char s[10];
    cout<<"a system of students!";
      for(i=0;i<M;i++)
      {
     cout<<"input the name: ";
     cin>>stu[i].name;
     cout<<"input the age: ";
     cin>>stu[i].age;
     cout<<"input the address: ";
     cin>>stu[i].add;
      }   
      for(i=0;i<M;i++)
      {
          cout<<stu[i].name<<","<<stu[i].age<<","<<stu[i].add<<endl;
      }
}
搜索更多相关主题的帖子: system 
2011-05-30 23:05
心爱的远方
Rank: 2
等 级:论坛游民
帖 子:13
专家分:20
注 册:2011-5-11
得分:0 
谢谢各位啦!
2011-05-31 23:00



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-341463-1-1.html




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

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