摘要: #include<iostream> using namespace std; int main() { void sort(int x,int y,int z); int x,y,z; cin>>x>>y>>z; sort(x,y,z); return 0; } void sort(int x,i 阅读全文
posted @ 2017-09-12 11:24 TOTO2 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; int main() { int a,b,c; int f(int x,int y,int z); cin>>a>>b>>c; c=f(a,b,c); cout<<c<<endl; return 0; } int f( 阅读全文
posted @ 2017-09-12 11:02 TOTO2 阅读(91) 评论(0) 推荐(0) 编辑