C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:注意事项:我在编写程序时,因将数组的范围设置成10,而导致数组越界,出现运行错误参考代码:#include <stdio.h>int main(){ char s[100]; int i…… 题解列表 2018年08月18日 0 点赞 0 评论 329 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include #include int main() { char str[99],c; gets(str); int i; for(i=0;(c=str[i…… 题解列表 2019年11月13日 0 点赞 0 评论 350 浏览 评分:0.0
编写题解 1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> void count(char* str){ …… 题解列表 2024年05月29日 0 点赞 0 评论 110 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:import java.io.*; import java.util.Arrays; public class Main { public static BufferedReader…… 题解列表 2021年12月11日 0 点赞 0 评论 98 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include#define N 100int main(){ char a[100];//定义即将输入的字符串 int i,j; j=0;//j一定…… 题解列表 2020年11月18日 0 点赞 0 评论 287 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路: 循环遍历,然后进行单个字符匹配,如果符合条件就进行转换注意事项:   题解列表 2019年02月07日 0 点赞 0 评论 500 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 159 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (Java代码) 摘要:解题思路:将字符串转化成字符数组,用charAt(i)来读取数组内的各个元素。注意事项:z变成的是a,需要分开讨论,同时需要考虑字母的大小写。参考代码:import java.util.Scanner…… 题解列表 2018年02月12日 1 点赞 0 评论 1087 浏览 评分:0.0
................... 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char s[1000]; g…… 题解列表 2023年12月19日 0 点赞 0 评论 82 浏览 评分:0.0
循环数组就好啦 摘要:解题思路:循环数组的思想就行拉注意事项:参考代码:#include<cstdio>#include <cstring>#include <ctype.h> using namespace std;in…… 题解列表 2017年12月04日 1 点赞 0 评论 765 浏览 评分:0.0