1042题 :电报加密 摘要:# 自己写的代码 ```c #include #include int main() { char a[20]; gets(a); int len; len=strlen…… 题解列表 2023年07月05日 0 点赞 0 评论 94 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:注意逻辑参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[111]; int n,i; …… 题解列表 2020年12月20日 0 点赞 0 评论 142 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码)利用ASCII码对应的字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; int…… 题解列表 2020年11月07日 0 点赞 0 评论 359 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char str; while(1) { str=getchar(); if(str<=&#…… 题解列表 2017年08月14日 0 点赞 0 评论 718 浏览 评分:0.0
利用getchar()和putchar()编写,无需for循环。 摘要:#include <stdio.h>int main(void){ int ch; while((ch=getchar())!='\n') //while循环中进行了两…… 题解列表 2018年02月26日 2 点赞 0 评论 1457 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路: 循环遍历,然后进行单个字符匹配,如果符合条件就进行转换注意事项:   题解列表 2019年02月07日 0 点赞 0 评论 500 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C++代码) 摘要:解题思路:看代码应该可以看懂的,判断是否是最后一个字母,是的话减25。注意事项: 格式化输出 %c参考代码:#include <iostream>#include <stdio.h>using nam…… 题解列表 2018年08月11日 0 点赞 0 评论 523 浏览 评分:0.0
[编程入门]电报加密(避免使用gets()的解法 摘要:看到大家用的都是gets的解法,而gets由于输入易溢出的问题已经不时兴了。这里为大家提供只用scanf的方法解题思路:输入到字符数组存储,注意空格也要存入。(这里可以体现出get的便利性,因为get…… 题解列表 2022年01月16日 0 点赞 0 评论 156 浏览 评分:0.0
[编程入门]电报加密-题解(C++代码) 摘要:#include using namespace std; int main() { char ch; while ((ch = getchar() )!= '\n')//注意输入格式 …… 题解列表 2019年12月27日 0 点赞 0 评论 338 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:如果定义数组,注意数组长度要超过26*2即52;因为大小写英文字母共52个。参考代码:#include<stdio.h>int main(){ int i; char a[70];…… 题解列表 2018年07月10日 0 点赞 0 评论 299 浏览 评分:0.0