c++从键盘上输入两个字符串,比较两个字符串大小,按从小到大的顺序输出两个字符串
c++从键盘上输入两个字符串,比较两个字符串大小,按从小到大的顺序输出两个字符串
日期:2019-05-05 15:31:30 人气:3
#include #include using namespace std;int main() { cout > a >> b; if (a < b) { cout << a << '\n' << b << endl; } else { cout << b << '\n' << a << endl; }}