题解 1042: [编程入门]电报加密

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

筛选

电报加密(一看就会)

摘要:解题思路:直到b==&#39;\n&#39;才结束循环注意事项:b的值参考代码:#include<stdio.h> int main(){ char b; int i=0; while(……

[编程入门]电报加密 C语言

摘要:解题思路:gets是不是只能在C语言中使用注意事项:参考代码:#include<stdio.h>#include <string.h>using namespace std;int main(){  ……

1042: [编程入门]电报加密

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

getline的使用

摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); ……

电报加密C++

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

1042: [编程入门]电报加密

摘要:解题思路:灵活运用ctype函数注意事项:注意大小写参考代码:#define _CRT_SECURE_NO_WARNINGS#pragma warning(disable:6031)#include ……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:s = input() arr = "" for i in range(len(s)):     if s[i] == &#39; &#39;:         ……