摘要: void ShowChar(string str) { for (int i = 0; i < str.length(); ++i) { printf("str[%d] = %c\n", i + 1,str[i]); }} 阅读全文
posted @ 2021-06-28 09:25 江南王小帅 阅读(88) 评论(0) 推荐(0)
摘要: #pragma once#include <iostream>#include <string>#include <Windows.h>#include <fstream>#include <signal.h>#include <io.h>#include <vector>using namespa 阅读全文
posted @ 2021-06-28 09:15 江南王小帅 阅读(70) 评论(0) 推荐(0)