主题:求助!!新手問題
例如
#include "iostream.h"
int main()
{
int a,b;
cout<<"请输入两位数:";
cin>>a>>b;
if(a>b)
{
int temp;
temp=a;
a=b;
b=temp;
}
cout<<a<<b<<endl;
return 0;
}
其中cout<<a<<b<<endl;为什麼说从小到大输出?难道有小於号的作用?
#include "iostream.h"
int main()
{
int a,b;
cout<<"请输入两位数:";
cin>>a>>b;
if(a>b)
{
int temp;
temp=a;
a=b;
b=temp;
}
cout<<a<<b<<endl;
return 0;
}
其中cout<<a<<b<<endl;为什麼说从小到大输出?难道有小於号的作用?