ASCII碼排序——HDU-2000

# 題目 題解 使用while循環實現輸入多組數據,然後將三個字符進行排序,輸出時在字符中間打上空格即可。 代碼實現 //HDU-2000 #include<iostream> using namespace std; int main() { char a, b, c, temp; while (cin >> a >> b >> c) { if (b < a) { temp = a;
相關文章
相關標籤/搜索