先全部加一再判断是否为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语言代码) 摘要:```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
函數調用完成加密 摘要:解题思路:1.先要讀入字符串,因需要包含可能的空格,故定義字符數組後,不能只用%s讀入 2.數組讀入後,需要遍歷,查找符合條件的字符,再來調用函數 …… 题解列表 2023年04月01日 0 点赞 0 评论 59 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio>#include <algorithm>#include <cstring>using namespace std;int main()…… 题解列表 2018年02月26日 0 点赞 0 评论 610 浏览 评分:0.0
!!!!终于不再报错(c++代码) 摘要:解题思路:直接上代码(血泪史啊)注意事项: 不要忽略其他字符!!尤其考虑空格 ,我使用的函数是getline();参考代码#include <iostream>using n…… 题解列表 2022年03月20日 0 点赞 0 评论 257 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ char string[1000]; sca…… 题解列表 2020年11月18日 0 点赞 0 评论 178 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char myString[256], ch; in…… 题解列表 2018年05月02日 0 点赞 0 评论 466 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include #include int main() { char a[80]={'\0'}; gets(a); int i; for(i=0;a[i]!='\0…… 题解列表 2020年01月23日 0 点赞 0 评论 352 浏览 评分:0.0
电报加密; 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string a; whil…… 题解列表 2022年10月26日 0 点赞 0 评论 157 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[100]; gets(str); int n= str…… 题解列表 2017年12月12日 0 点赞 0 评论 644 浏览 评分:0.0