摘要:
#include <iostream> #include <thread> void customSleep() { std::this_thread::sleep_for(std::chrono::milliseconds(5)); std::this_thread::sleep_for(std: 阅读全文
摘要:
#include <iostream> #include <string> #include <tuple> using namespace std; int main () { tuple<string,int> tt[10]; for(int i=0; i<10; i++) { tt[i] = 阅读全文