2022-04-21 01:51:37 +08:00

13 lines
224 B
C++

// pause.cpp
// LICENSE: Nothing(do what ever you want!)
#include <bits/stdc++.h>
using namespace std;
int main(){
cout << "Press any key to continue...";
cin.clear();
cin.sync();
cin.get();
return 0;
}