| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 474 人关注过本帖
标题:有人可以帮忙把这个程序编辑完整么 万分感谢
取消只看楼主 加入收藏
jameszhpg
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-11-26
结帖率:0
收藏
已结贴  问题点数:20 回复次数:0 
有人可以帮忙把这个程序编辑完整么 万分感谢
/* a program that compute perfect numbers */
/*

 perfect number is a number who factors adds up to itself.

For example; 6
factors are 1, 2, 3 and 1 + 2 + 3 = 6

Another example : 28
factors are: 1, 2, 4, 7, 14
and 1 + 2 + 4 + 7 + 14 = 28

This ia program that find 6 perfect numbers

*/
#include <stdio.h>

#define S    1    /* Starting Number */
#define N    6    /* Number of perfect number to find */
#define WRITEONLY    "w"

FILE    *fp;
long     p = S;

main( argc, argv )
      int argc ;
      char *argv[ ] ;
{
    long     f,sum;
    int     c = 1;

      if(argc == 2)
    {
        if ((fp=fopen(argv[1], WRITEONLY)) == NULL)
        {
            printf("%s: cannot open %s\n", argv[0], argv[1]);
            exit(1);
        }
    } else    fp = stdout ;
/****

Logic is missing here!


***/
}
搜索更多相关主题的帖子: 编辑 perfect example factors 
2011-11-26 15:13
快速回复:有人可以帮忙把这个程序编辑完整么 万分感谢
数据加载中...
 
   



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

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