码迷,mamicode.com
首页 > 编程语言 > 详细

C++Day1

时间:2016-10-12 23:27:03      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:c++

使用3个用户定义的函数包括main(),并生成下面的输出,其中 一个调用两次,生成前两行,另一个调用两次,生成后两行。

there blind mice

there blind mice

see how they run

see how they run


程序如下:

int mice();

int run();


int main()

{

mice();

mice();

run();

run();

return 0;


}


int mice()

{

cout<<"there blind mice"<<endl;

return 0;


}


int run()

{

cout<<"see how they run"<<endl;

return 0;

}


C++Day1

标签:c++

原文地址:http://891002.blog.51cto.com/882365/1861173

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!