| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 783 人关注过本帖
标题:[求助] 两个程序一模一样。为什么有一个不能通过编译
取消只看楼主 加入收藏
fibers
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-9-22
收藏
 问题点数:0 回复次数:0 
[求助] 两个程序一模一样。为什么有一个不能通过编译

我写了两个程序。。是一模一样的。。但是有一个编译的时候能通过。。另一个不能。
这个是能通过编译的:
#include <iostream>
struct car
{
char name[20];
int year;
};
int main(void)
{
using namespace std;
int n;
cout << "How many cars do you wish to catalog?: ";
cin >> n;

car * pc = new car [n];
int i;
for (i = 0; i < n; i++)
{
cout << "Car #" << (i + 1) << ":\n";
cout << "Please enter the make: ";
cin.getline(pc[i].name,20);
cout << "Please enter the year made: ";
cin >> pc[i].year;

}
cout << "Here is your collection:\n";
for (i = 0; i < n; i++)
cout << pc[i].year << " " << pc[i].name << "\n";
delete [] pc;
return 0;
}


这个是不能通过编译的:
#include<iostream>
struct car
{
char name[20];
int year;
};
int main(void)
{
using namespace std;
int n;
cout << "How many cars do you wish to catalog?: ";
cin >> n ;
car* pc = new car[n];
int i;
for (i = 0; i < n; i++)
{
cout << "Car #" << (i + 1) << ":\n";
cout << "Please enter the make: ";
cin.getline(pc[i].name,20);
cout << "Please enter the year made: ";
cin >> pc[i].year;

}
cout << "Here is your collection:\n"
for (i=0 ; i<n ; i++)
cout << pc[i].year << " " << pc[i].name << "\n";
delete [] pc;
return 0 ;
}

这个没能通过编译的程序,显示:
Error E2379 10.cpp 25: Statement missing ; in function main()
Error E2379 10.cpp 25: Statement missing ; in function main()

搜索更多相关主题的帖子: include 
2007-10-03 17:21
快速回复:[求助] 两个程序一模一样。为什么有一个不能通过编译
数据加载中...
 
   



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

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