| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 347 人关注过本帖
标题:有一个程序运行结果没看懂,大家帮忙看下
只看楼主 加入收藏
c821101017
Rank: 2
等 级:论坛游民
帖 子:33
专家分:10
注 册:2011-9-21
结帖率:100%
收藏
 问题点数:0 回复次数:0 
有一个程序运行结果没看懂,大家帮忙看下
    该程序由两部分组成:第一部分为
程序代码:
#include<stdio.h>
void report_count();
void accumulate(int k);
int count=0;    //文件作用域,外部链接
int main(void)
{
    int value;        //自动变量
    register int i;//寄存器变量
    printf("Enter a positive integer(0 to quit): ");
    while(scanf("%d",&value)==1 && value>0)
    {
        ++count;    //使用文件作用域变量
        for(i=value; i>=0; i--)
            accumulate(i);
        printf("Enter a positive integer(0 to quit): ");
    }
    report_count();
    return 0;
}

void report_count()
{
    printf("Loop executed %d times\n",count);
}
第二部分为:
程序代码:
#include<stdio.h>
extern int count;        //引用申明,外部链接

static int total=0;        //静态定义,内部链接
//void accumulate(int k);    //原型
void accumulate(int k)        //k具有代码块作用域、空连接
{
    static int subtotal=0;    //静态、空连接

    if(k<=0)
    {
        printf("llp cycle: %d\n",count);
        printf("subtotal: %d; total: %d\n",subtotal,total);
        subtotal=0;
    }
    else
    {
        subtotal+=k;
        total+=k;
    }
}
运行截图为:
图片附件: 游客没有浏览图片的权限,请 登录注册

主要是结果感觉与程序对不上。
搜索更多相关主题的帖子: color 
2012-01-08 16:18
快速回复:有一个程序运行结果没看懂,大家帮忙看下
数据加载中...
 
   



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

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