10.24 work
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.24 work相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章