首页 > 编程语言 > 详细

C++函数调用

时间:2018-04-30 20:22:42      阅读:203      评论:0      收藏:0      [点我收藏+]
#include<iostream>
using namespace std;
#include<string>

void fun1(string str, int n)
{
for(int i=0; i<n; i++)
  cout<<str<<endl;
}

void fun2()
{
    fun1("Three blind mice",2);
    fun1("See how they run",2);
}

int main()
{
    fun2();
}

 

技术分享图片技术分享图片

 

#include<iostream>
using namespace std;
#include<string>

void fun(int hour, int minute)
{
if(0<=hour<24&&0<minute<10)          cout<<"Time "<<hour<<":0"<<minute<<endl; 
else if(0<=hour<24&&10<=minute<=59)  cout<<"Time "<<hour<<":"<<minute<<endl; 
else cout<<"Error"<<endl;
}




int main()
{  int h,m;
 cout<<"Enter the number of hours:";
 cin>>h;

 cout<<"Enter the number of minutes:";
 cin>>m;
 fun(h,m);

   
}

  

 

C++函数调用

原文:https://www.cnblogs.com/wangprince2017/p/8974481.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!