题解 1249: 简单编码 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>#include<math.h>int main(){ char str[…… 题解列表 2021年05月12日 0 点赞 0 评论 152 浏览 评分:0.0
简单编码 (Java代码) 摘要:解题思路:注意事项:参考代码:Scanner in = new Scanner(System.in); String bm; StringBuffer bmBuffer; while(in.ha…… 题解列表 2018年03月19日 0 点赞 0 评论 691 浏览 评分:0.0
简单编码 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; w…… 题解列表 2018年06月22日 1 点赞 0 评论 731 浏览 评分:0.0
编写题解 1249: 简单编码 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() { string s; wh…… 题解列表 2022年04月24日 0 点赞 0 评论 248 浏览 评分:0.0
简单编码 (C语言代码) 摘要:解题思路:一一对应注意事项:最后的\n不要忘记参考代码:#include<stdio.h>int main(){ char a[100],i; while(scanf("%s",a)!=EOF) { …… 题解列表 2019年01月08日 0 点赞 0 评论 531 浏览 评分:0.0
简单编码 (C++代码)(这里推荐用switch) 摘要:解题思路:读入判断是否为“END”switch处理输出注意事项:break的位置参考代码:#include<stdio.h> #include <cstring> int main() { …… 题解列表 2017年08月05日 6 点赞 2 评论 1022 浏览 评分:2.0
简单编码 (C语言代码) 摘要:解题思路:注意事项:本来我刚开是用gets(a)的;能输出正确结果但是提交不正确;然后改用scanf("%s",a);参考代码:#include<stdio.h>#include<string.h>i…… 题解列表 2019年01月15日 2 点赞 0 评论 956 浏览 评分:2.0
简单编码 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; while(scanf("%s",a)!=EOF) { if(a[0]=='…… 题解列表 2019年05月24日 1 点赞 0 评论 1142 浏览 评分:7.0
简单编码-题解(C语言代码) 摘要:```c #include #include /* 1.制作一个函数,对每次字符进行转义 2.思路:首先判断是否遇到END,如果遇到则停止 */ char change(…… 题解列表 2020年08月26日 0 点赞 0 评论 473 浏览 评分:7.0
非常好 初学者容易理解 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> int main() { char a[100]; while(scanf("…… 题解列表 2021年10月07日 0 点赞 0 评论 209 浏览 评分:7.0