标签:std cin img cout images 技术分享 logs sys names
#include <iostream> using namespace std; int max(int x ,int y,int z); int main(){ int a,b,c,m; cout<<"请你输入三个整型的数字:"<<endl; cin>>a>>b>>c; m=max(a,b,c); cout<<"The max of a b and c is:"<<m<<endl; system("pause"); return 0; } inline int max(int x ,int y,int z){ if(z>x) x=z; if(y>x) x=y; return x; }
标签:std cin img cout images 技术分享 logs sys names
原文地址:http://www.cnblogs.com/928990166li/p/7811588.html