正则表达式解决字符串空格输入问题 摘要:解题思路:由于字符串中单词以空格隔开,我们可以用正则表达式配合scanf来解决空格的输入问题,比如scanf("%[^\n]",st…… 题解列表 2025年03月01日 1 点赞 0 评论 78 浏览 评分:10.0
题解 2854: 字符串的输入以及条件判断 摘要:解题思路:对输入字符串的每个元素进行判断,如果该字符为A~Y或a~y,则输出其下一个字符串;如果该字符为z或Z,则输出a或A注意事项:scanf函数对含空格的字符串的读取有限制,只会读到空格之前,对空…… 题解列表 2024年09月19日 0 点赞 0 评论 270 浏览 评分:9.9
题解 2854: 密码翻译 摘要: #include using namespace std; char a[256],b; string w; int main(){ …… 题解列表 2023年12月29日 0 点赞 0 评论 201 浏览 评分:0.0
2854: 密码翻译 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[1000];int main(){ cin.getline(s…… 题解列表 2023年11月04日 0 点赞 0 评论 170 浏览 评分:0.0
纯小丑题想圈钱 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[101]; fgets(a…… 题解列表 2023年10月10日 0 点赞 1 评论 141 浏览 评分:9.9
密码翻译(数组空间要100以上,注意) 摘要:参考代码: ```c #include #include #include int main() { char a[100]; gets(a); int len=strlen(…… 题解列表 2023年09月25日 0 点赞 0 评论 215 浏览 评分:9.9
2854: 密码翻译 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { c…… 题解列表 2023年03月06日 0 点赞 0 评论 427 浏览 评分:9.9
2854——密码翻译 摘要:分别判断两种情况 做出对应修改参考代码:#include"stdio.h" #include"string.h" typedef char string[111]; string str; …… 题解列表 2022年10月28日 0 点赞 0 评论 392 浏览 评分:2.0