码迷,mamicode.com
首页 > 其他好文 > 详细

10.24 work

时间:2017-11-06 22:41:27      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:color   ges   and   技术   str   blog   style   images   class   

#include<iostream>
using namespace std;
int sum(int x,int y);
int main(){
    int a,b,s;
    cout<<"enter two number"<<endl;
    cin>>a>>b;
    s=sum(a,b);
    cout<<"the sum of a and b"<<s<<endl;
    return 0;
}
    int sum(int x,int y){
        return x+y;
    }

技术分享

 

10.24 work

标签:color   ges   and   技术   str   blog   style   images   class   

原文地址:http://www.cnblogs.com/sanyeai/p/7795350.html

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