标题:编程学习五
只看楼主
wtoo2008
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2010-11-9
结帖率:100%
 问题点数:0 回复次数:0 
编程学习五
题目:编写一个程序,程序中要调用名为one_three()的函数。该函数要在一行中显示单词“one”,再调用two()函数,然后再在另一行显示单词“three”。函数two()应该能在一行中显示单词“two”。main()函数应该在调用one_three()函数之前显示短语“starting now”,函数调用之后要显示“done!”。这样,最后的输出结果应如下所示:
    starting now:
    one
    two
    three
    done!

程序:
#include <stdio.h>
void one_three(void);
void two(void);
int main(void)
{
 printf("starting now:\n");
 one_three();
 printf("done!\n");
 return 0;
}

void one_three(void)
{
 printf("one\n");
 two();
 printf("three\n");
}

void two(void)
{
 printf("two\n");
}

解答:
starting now:
one
two
three
done!

请大家指教。
搜索更多相关主题的帖子: 学习 
2010-12-19 19:51



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-329327-1-1.html




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

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