C++问题,帮我看看下面这个程序有什么问题!
#include<iostream>usingnamespacestd;intmain(){chargetchar();charunit[100];for(inti=0;...
# include<iostream>
using namespace std;
int main()
{
char getchar();
char unit[100];
for(int i=0;i<20;)
{
for(int j=i;j<i+2;j++)
{
unit[j]=getchar(j);
cout<<unit[j];
}
cout<<" ";
i+=2;
}
cout<<endl;
return 0;
}
char getchar(int n)
{
char *title;
title="holle world!";
return title[n];
}
怎么老报错啊!
D:\c++相关\firstapp\appmain.cpp(11) : warning C4002: too many actual parameters for macro 'getchar'
D:\c++相关\firstapp\appmain.cpp(20) : warning C4002: too many actual parameters for macro 'getchar'
D:\c++相关\firstapp\appmain.cpp(20) : error C2199: syntax error : found 'char (' at global scope (was a declaration intended?)
D:\c++相关\firstapp\appmain.cpp(20) : error C2059: syntax error : ')'
D:\c++相关\firstapp\appmain.cpp(20) : error C2448: '<Unknown>' : function-style initializer appears to be a function definition
还有就是getchar中:
char *title;
title="holle world!";
是什么意思啊!谢谢 展开
using namespace std;
int main()
{
char getchar();
char unit[100];
for(int i=0;i<20;)
{
for(int j=i;j<i+2;j++)
{
unit[j]=getchar(j);
cout<<unit[j];
}
cout<<" ";
i+=2;
}
cout<<endl;
return 0;
}
char getchar(int n)
{
char *title;
title="holle world!";
return title[n];
}
怎么老报错啊!
D:\c++相关\firstapp\appmain.cpp(11) : warning C4002: too many actual parameters for macro 'getchar'
D:\c++相关\firstapp\appmain.cpp(20) : warning C4002: too many actual parameters for macro 'getchar'
D:\c++相关\firstapp\appmain.cpp(20) : error C2199: syntax error : found 'char (' at global scope (was a declaration intended?)
D:\c++相关\firstapp\appmain.cpp(20) : error C2059: syntax error : ')'
D:\c++相关\firstapp\appmain.cpp(20) : error C2448: '<Unknown>' : function-style initializer appears to be a function definition
还有就是getchar中:
char *title;
title="holle world!";
是什么意思啊!谢谢 展开
4个回答
展开全部
title是个字符型指针
你让他指向了内存内容是hello world的区域
用法跟char []title差不多
你让他指向了内存内容是hello world的区域
用法跟char []title差不多
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
getchar 为保留字节。最好不用用这个作为自变量
你的
char getchar();
unit[j]=getchar(j);
有问题
你的
char getchar();
unit[j]=getchar(j);
有问题
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
getchar() 没有参数 所以没有getchar(j)这种调用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
参数不对
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询