1//编写程序提示用户输入两个数,然后报告哪个数比较小。
 2#include <iostream>
 3
 4using std::cin;
 5using std::cout;
 6using std::endl;
 7
 8int main()
 9{
10    cout << "Please enter two numbers:" << endl;
11    int a = 0,b = 0;
12    cin >> a;
13    cin >> b;
14    cout << "So,the number " << (a>? b : a) 
15        << " is smaller than " << (a>? a : b) 
16        << "." << endl;
17    return 0;
18}