| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 322 人关注过本帖
标题:请教问题,帮我查找下错误
取消只看楼主 加入收藏
冷月无痕
Rank: 2
等 级:论坛游民
帖 子:11
专家分:21
注 册:2011-6-8
结帖率:60%
收藏
已结贴  问题点数:18 回复次数:0 
请教问题,帮我查找下错误
编写n!的函数:
 #include<stdio.h>
 int fact(int i)
 {
   if (i<0)
    printf("error\n");
   else if (i==0!!i==1)
    fact(i)=1;
   else fact(i)=i*fact(i-1);
   return (fact);
 }
 main()
 {
  int i,j;
  printf("please input data:\n");
  scanf("%d",&i);
  j=fact(i);
  printf("the reslut is %d:",j);
  getch();
 }


错误 1111.c 6: If 语句缺少 ')'在 fact 函数中
错误 1111.c 8: 'else' 位置错在 fact 函数中
请教如何修改
搜索更多相关主题的帖子: include 
2011-08-05 18:43
快速回复:请教问题,帮我查找下错误
数据加载中...
 
   



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

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