2017年11月9日

摘要: #include using namespace std; template T max(T x ,T y,T z){ if(z>x) x=z; if(y>x) x=y; return x; } int main(){ int a,b,c,m; cin>>a>>b>>c; m=max(a,b,c); cout>ac>>bc... 阅读全文
posted @ 2017-11-09 20:49 三叶癌 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int m(int x,int y,int z); short m(short q,short w,short e); double m(double a,double s,double d); int main(){ int a,b,c,min; cin>>a>>b>>c; min=m(a,b,c); ... 阅读全文
posted @ 2017-11-09 20:41 三叶癌 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int m(int x,int y,int z); int main(){ int a,b,c,max; cin>>a>>b>>c; max=m(a,b,c); coutx) x=z; if(y>x) x=y; return x; } ... 阅读全文
posted @ 2017-11-09 20:19 三叶癌 阅读(78) 评论(0) 推荐(0) 编辑

导航