C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c; while((c=getchar())!='\n') if((c>= '…… 题解列表 2018年07月24日 0 点赞 0 评论 435 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 110 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:**读入用gets,cin遇到空格或者回车就结束读入了** 注意事项:注意z的特判以至于上面没有到z没有等号 参考代码: ```cpp #include using nam…… 题解列表 2021年02月04日 0 点赞 0 评论 154 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voiod main(){char a[100];int i,j;gets(a);j=strlen(…… 题解列表 2017年12月13日 0 点赞 0 评论 567 浏览 评分:0.0
很简单的字母移位 摘要:解题思路:根据字母与首字母的距离来判断如何移位。注意事项:没啥困难的参考代码:#include<iostream> using namespace std; int main(int argc, …… 题解列表 2021年04月08日 0 点赞 0 评论 114 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要: #include #include int main() { char a[100]; int i=0,j=0; gets(…… 题解列表 2019年08月04日 0 点赞 0 评论 368 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码) 摘要:/*主要是注意除了小写字母变化之外,其他都要原样输出*/ # #include using namespace std; int fun(char *a) { int i=0; …… 题解列表 2020年04月24日 0 点赞 0 评论 294 浏览 评分:0.0
[编程入门]电报加密(避免使用gets()的解法 摘要:看到大家用的都是gets的解法,而gets由于输入易溢出的问题已经不时兴了。这里为大家提供只用scanf的方法解题思路:输入到字符数组存储,注意空格也要存入。(这里可以体现出get的便利性,因为get…… 题解列表 2022年01月16日 0 点赞 0 评论 156 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:c=str(input())for i in c: if 'a'<=i<='z' or 'A'<=i<='Z…… 题解列表 2024年02月20日 0 点赞 0 评论 74 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码) 摘要:第一次写题解,我的水平和小白差不多,都得继续学习。 #include stdio是调用系统函数的 #include 这是字符串库函数 int mai…… 题解列表 2020年05月11日 0 点赞 0 评论 345 浏览 评分:0.0