先全部加一再判断是否为z,Z 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[100]; gets(a); for(int i=0;a[i]!='\0';i++…… 题解列表 2019年01月01日 0 点赞 0 评论 309 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:注意事项:我在编写程序时,因将数组的范围设置成10,而导致数组越界,出现运行错误参考代码:#include <stdio.h>int main(){ char s[100]; int i…… 题解列表 2018年08月18日 0 点赞 0 评论 329 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; while((ch=getchar())!=EOF){ …… 题解列表 2022年06月14日 0 点赞 0 评论 83 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码)<ctype.h>isalpha(c) 摘要:题目:输入一行电报文字,将字母变成其下一字母(如’a’变成’b’……’z’变成’a’其它字符不变)。 1、include中的函数: isalpha(c)当c为字母时,输出非零数 2、include…… 题解列表 2020年02月26日 0 点赞 0 评论 311 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ …… 题解列表 2017年12月17日 0 点赞 0 评论 541 浏览 评分: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语言代码) 摘要: #include #include int main() { // a=97 b=98 z=122 a-A=32 // A=65…… 题解列表 2019年11月03日 0 点赞 0 评论 338 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include #include int main(void){ int i,len; char ch[100]; gets(ch); len=strlen(ch);…… 题解列表 2020年02月12日 0 点赞 0 评论 317 浏览 评分:0.0
[编程入门]电报加密(避免使用gets()的解法 摘要:看到大家用的都是gets的解法,而gets由于输入易溢出的问题已经不时兴了。这里为大家提供只用scanf的方法解题思路:输入到字符数组存储,注意空格也要存入。(这里可以体现出get的便利性,因为get…… 题解列表 2022年01月16日 0 点赞 0 评论 156 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s)…… 题解列表 2023年05月21日 0 点赞 0 评论 72 浏览 评分:0.0