题解 1249: 简单编码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单编码-题解(C语言代码)

摘要:```c #include #include /* 1.制作一个函数,对每次字符进行转义 2.思路:首先判断是否遇到END,如果遇到则停止 */ char change(……

简单编码 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){  char a[100]; while(scanf("%s",a)!=EOF) { if(a[0]==&#39……

非常好 初学者容易理解

摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<string.h> int main() {     char a[100];     while(scanf("……

简单编码 (C语言代码)

摘要:解题思路:注意事项:本来我刚开是用gets(a)的;能输出正确结果但是提交不正确;然后改用scanf("%s",a);参考代码:#include<stdio.h>#include<string.h>i……

简单编码 (Java代码)

摘要:解题思路:注意事项:参考代码: import java.util.Scanner; public class C1249 { public static void main(String[……

编写题解 1249: 简单编码

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main() {    string s;    wh……

简单编码 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string st……

简单编码 (C++代码)

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <……