密码翻译(数组空间要100以上,注意) 摘要:参考代码: ```c #include #include #include int main() { char a[100]; gets(a); int len=strlen(…… 题解列表 2023年09月25日 0 点赞 0 评论 221 浏览 评分:9.9
密码翻译(C++)简单实用 摘要:参考代码:#include <iostream>#include <string>using namespace std;string encrypt(const string& str) { …… 题解列表 2023年07月16日 0 点赞 0 评论 226 浏览 评分:9.9
正则表达式解决字符串空格输入问题 摘要:解题思路:由于字符串中单词以空格隔开,我们可以用正则表达式配合scanf来解决空格的输入问题,比如scanf("%[^\n]",st…… 题解列表 2025年03月01日 1 点赞 0 评论 111 浏览 评分:10.0