[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:**读入用gets,cin遇到空格或者回车就结束读入了** 注意事项:注意z的特判以至于上面没有到z没有等号 参考代码: ```cpp #include using nam…… 题解列表 2021年02月04日 0 点赞 0 评论 155 浏览 评分:0.0
strlen()不存在(C++代码) 摘要:解题思路:注意事项:strlen()这个函数虽然在string里也有,我用vs运行也没错,但是在这个网站编译器中需要包含的头文件是<cstring>参考代码:#include<iostream>#in…… 题解列表 2018年03月13日 0 点赞 0 评论 1349 浏览 评分:0.0
电报加密简单版 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char a[200]; int i; gets(a); for(i=0;…… 题解列表 2023年05月28日 0 点赞 0 评论 162 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (Java代码) 摘要:解题思路:将字符串转化成字符数组,用charAt(i)来读取数组内的各个元素。注意事项:z变成的是a,需要分开讨论,同时需要考虑字母的大小写。参考代码:import java.util.Scanner…… 题解列表 2018年02月12日 1 点赞 0 评论 1087 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 思路清晰 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i; char a[100]; gets(a…… 题解列表 2022年12月27日 0 点赞 0 评论 81 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:#include #include int main() { char s[100]; int i,l; gets(s); l=strlen(s); …… 题解列表 2020年01月22日 0 点赞 0 评论 473 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码) 摘要:1.如果字母是z ,就变成了a 2.如果是其他的字母,就直接变成后一个 3.如果不是字母,就保持不变 ```cpp #include using namespace std; in…… 题解列表 2020年04月16日 0 点赞 0 评论 303 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:#include <stdio.h>#include <string.h>int main(){ char s[100];int i=0; gets(s); for(i;s[i]!='\0&#…… 题解列表 2017年06月24日 0 点赞 0 评论 729 浏览 评分:0.0
getline的使用 摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[1000]; cin.getline(c,1000); …… 题解列表 2024年07月12日 0 点赞 0 评论 141 浏览 评分:0.0
C语言 电报加密& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 80//允许输入字符串长度int main(){ v…… 题解列表 2022年11月20日 0 点赞 0 评论 106 浏览 评分:0.0