c语言小程序 帮我看看哪里错了

#include<stdio.h>voidtry(int,int,int);main(){intx=2,y=3,z=0;pirntf("%d%d%d",x,y,z);tr... #include <stdio.h>
void try(int,int,int);
main()
{
int x=2,y=3,z=0;
pirntf("%d%d%d",x,y,z);
try(x,y,z);
pirntf("%d%d%d",x,y,z);
}
void try(int x,int y,int z);
{
pirntf("%d%d%d",x,y,z);
z=x+y;
x=x*x;
y=y*y;
pirntf("%d%d%d",x,y,z);
}

--------------------Configuration: 函数如何传递 - Win32 Debug--------------------
Compiling...
函数如何传递.cpp
G:\c语言的暑假\3\函数如何传递.cpp(2) : warning C4091: '' : ignored on left of 'void' when no variable is declared
G:\c语言的暑假\3\函数如何传递.cpp(2) : error C2143: syntax error : missing ';' before 'try'
G:\c语言的暑假\3\函数如何传递.cpp(2) : error C2143: syntax error : missing ';' before 'try'
G:\c语言的暑假\3\函数如何传递.cpp(6) : error C2065: 'pirntf' : undeclared identifier
G:\c语言的暑假\3\函数如何传递.cpp(7) : error C2319: 'try' must be followed by a compound statement. Missing '{'
G:\c语言的暑假\3\函数如何传递.cpp(8) : error C2317: 'try' block starting on line '7' has no catch handlers
G:\c语言的暑假\3\函数如何传递.cpp(9) : warning C4508: 'main' : function should return a value; 'void' return type assumed
G:\c语言的暑假\3\函数如何传递.cpp(10) : warning C4091: '' : ignored on left of 'void' when no variable is declared
G:\c语言的暑假\3\函数如何传递.cpp(10) : error C2143: syntax error : missing ';' before 'try'
G:\c语言的暑假\3\函数如何传递.cpp(10) : error C2143: syntax error : missing ';' before 'try'
G:\c语言的暑假\3\函数如何传递.cpp(11) : error C2447: missing function header (old-style formal list?)
执行 cl.exe 时出错.

函数如何传递.obj - 1 error(s), 0 warning(s)

小弟很菜鸟 见谅 勿喷
展开
 我来答
刘松199007
2011-07-15
知道答主
回答量:30
采纳率:0%
帮助的人:16.5万
展开全部
pirntf("%d%d%d",x,y,z); 应该改为printf,对应G:\c语言的暑假\3\函数如何传递.cpp(6) : error C2065: 'pirntf' : undeclared identifier
函数定义语句void try(int x,int y,int z);
去掉后面的;

.try是c++中已有的函数,可以换一个名称尽量不要与编译系统的关键字重复……
shine1991
科技发烧友

2011-07-14 · 智能家居/数码/手机/智能家电产品都懂点
知道顶级答主
回答量:4.7万
采纳率:82%
帮助的人:2.3亿
展开全部
果然是……
不知道怎么说你了

是printf啊,不是pirntf
还有多加了分号,还有输出格式很不好

#include <stdio.h>
void try(int,int,int);
main()
{
int x=2,y=3,z=0;
printf("%d %d %d\n",x,y,z);
try(x,y,z);
printf("%d %d %d\n",x,y,z);
}
void try(int x,int y,int z) //此处多加了分号
{
printf("%d %d %d\n",x,y,z);
z=x+y;
x=x*x;
y=y*y;
printf("%d %d %d\n",x,y,z);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ll20143628
2011-07-14 · TA获得超过945个赞
知道小有建树答主
回答量:1153
采纳率:0%
帮助的人:715万
展开全部
1.printf打成pirntf
2.try是c++中已有的函数,换别的名字吧
3.try函数的实现后面多了一个分号
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
手机用户07436
2011-07-15 · 超过14用户采纳过TA的回答
知道答主
回答量:78
采纳率:0%
帮助的人:45.7万
展开全部
函数的编写相当于一个小模块,最后不能有分号
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
miniappi1wgt1gdzuxj3
推荐于2016-07-20
知道答主
回答量:37
采纳率:0%
帮助的人:7.6万
展开全部
#include <stdio.h>
void ary(int,int,int); //把try换成ary
main()
{
int x=2,y=3,z=0;
printf("%d %d %d\n",x,y,z); //把pirntf换成printf
ary(x,y,z);
printf("%d %d %d\n",x,y,z);
}
void ary(int x,int y,int z) //此处多了分号
{
printf("%d %d %d\n",x,y,z);
z=x+y;
x=x*x;
y=y*y;
printf("%d %d %d\n",x,y,z);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式