| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 236 人关注过本帖
标题:程序编译出问题了,请指点
取消只看楼主 加入收藏
sugar123
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-10-6
收藏
 问题点数:0 回复次数:0 
程序编译出问题了,请指点
编译时出问题,

#include<iostream.h>
struct student
{
long num;float score;
struct student *next;
;
int k=0;
struct student *creat()
{
struct student *head,*p1,*p2;
head=NULL;
p1=new(student);
p2=p1;
cin>>p1->num>>p1->score;
while(k<=5)
{
n++;
if(k==1)
head=p1;
else
p2->next=p1;
p2=p1;
p1=new(student);
cin>>p1->num>>p1->score;
}
delete(p1);
p2->next=NULL;
reture(head);
}

Compiling...
044.cpp
e:\visualc++\install\msdev98\myprojects\04\044.cpp(7) : error C2252: 'k' : pure specifier can only be specified for functions
e:\visualc++\install\msdev98\myprojects\04\044.cpp(30) : fatal error C1004: unexpected end of file found
执行 cl.exe 时出错.

044.obj - 1 error(s), 0 warning(s)
搜索更多相关主题的帖子: 编译 
2007-10-06 02:47
快速回复:程序编译出问题了,请指点
数据加载中...
 
   



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

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