摘要: #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) 编辑