알고리즘

[알고리즘] 백준 23235 - The Fastest Sorting Algorithm In The World (C++)

blueberrysoda 2025. 1. 4. 23:47

[문제 링크] : https://www.acmicpc.net/problem/23235

#include <iostream>
using namespace std;

int main(){
    string S;
    int N, cnt = 0;
    while(cin >> N){
        if(N == 0){
            return 0;
        }
        getline(cin, S);
        cout << "Case " << ++cnt << ": Sorting... done!\n";
    }
    return 0;
}