纪念大一的日子,一个简单的C++
添加时间:2013-7-26 点击量:
//Author:xtyang
//记得大一学C说话,永远都不熟悉打听如何调用一个函数,真是好可爱呀。
#include<iostream>
using namespace std;
//定义函数原型
int add(int m,int n);
int minus(int m,int n);
//Main,法度进口
int main()
{
int r,p,res,opt;
cout<<Please input the opt to run responding command.\n
<<1.Add Function.\n
<<2.Minus Function
<<endl;
cin>>opt;
cout<<Please input the two num to be calc.<<endl;
cin>>r>>p;
switch(opt)
{
case 1:
res = add(r,p);
break;
case 2:
res = minus(r,p);
break;
default:
res = 0;
break;
}
cout<<The result is:<<res<<endl;
}
int add(int m,int n)
{
int res = m+n;
return (res);
}
int minus(int m,int n)
{
return (m-n);
}
我俩之间有着强烈的吸引力。短短几个小时后,我俩已经明白:我们的心是一个整体的两半,我俩的心灵是孪生兄妹,是知己。她让我感到更有活力,更完美,更幸福。即使她不在我身边,我依然还是感到幸福,因为她总是以这样或者那样的方式出现在我心头。——恩里克·巴里奥斯《爱的文明》
//Author:xtyang
//记得大一学C说话,永远都不熟悉打听如何调用一个函数,真是好可爱呀。
#include<iostream>
using namespace std;
//定义函数原型
int add(int m,int n);
int minus(int m,int n);
//Main,法度进口
int main()
{
int r,p,res,opt;
cout<<Please input the opt to run responding command.\n
<<1.Add Function.\n
<<2.Minus Function
<<endl;
cin>>opt;
cout<<Please input the two num to be calc.<<endl;
cin>>r>>p;
switch(opt)
{
case 1:
res = add(r,p);
break;
case 2:
res = minus(r,p);
break;
default:
res = 0;
break;
}
cout<<The result is:<<res<<endl;
}
int add(int m,int n)
{
int res = m+n;
return (res);
}
int minus(int m,int n)
{
return (m-n);
}
我俩之间有着强烈的吸引力。短短几个小时后,我俩已经明白:我们的心是一个整体的两半,我俩的心灵是孪生兄妹,是知己。她让我感到更有活力,更完美,更幸福。即使她不在我身边,我依然还是感到幸福,因为她总是以这样或者那样的方式出现在我心头。——恩里克·巴里奥斯《爱的文明》