题解 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
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101]; int i; while (scanf("%s…… 题解列表 2023年10月05日 0 点赞 0 评论 55 浏览 评分: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语言代码) 摘要: #include #include int main() { int i; char s[100]; while(scanf(…… 题解列表 2019年06月14日 0 点赞 0 评论 429 浏览 评分:0.0
简单编码 (C语言代码) 摘要:解题思路:注意事项:本来我刚开是用gets(a)的;能输出正确结果但是提交不正确;然后改用scanf("%s",a);参考代码:#include<stdio.h>#include<string.h>i…… 题解列表 2019年01月15日 2 点赞 0 评论 956 浏览 评分:2.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
简单编码 (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语言代码)(运用strcmp函数在END就退出!) 摘要:```c #include #include void main() { char a[100],i; while(gets(a)&&strcmp(a,"END")!=0)//意思是先…… 题解列表 2020年02月03日 0 点赞 0 评论 893 浏览 评分:9.9
简单编码 “ I Love Your"(C语言代码) 摘要:解题思路:注意事项:参考代码:#if 0最近Kingly对编码很感兴趣,于是从网上找了一些编码原则来对字符串做实验。由于Kingly一直很忙,所以希望你这位编程高手来替他解决这个问题。下面是编码原则:…… 题解列表 2019年02月10日 0 点赞 0 评论 1083 浏览 评分:9.9