[编程入门]电报加密-题解(C语言代码) 摘要: #include #include int main() { int i,z; char word[1000]; gets(…… 题解列表 2019年11月29日 0 点赞 0 评论 334 浏览 评分:0.0
!!!!终于不再报错(c++代码) 摘要:解题思路:直接上代码(血泪史啊)注意事项: 不要忽略其他字符!!尤其考虑空格 ,我使用的函数是getline();参考代码#include <iostream>using n…… 题解列表 2022年03月20日 0 点赞 0 评论 257 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String args[]) {…… 题解列表 2018年02月06日 0 点赞 0 评论 734 浏览 评分:0.0
[编程入门]电报加密-题解(C语言代码) 摘要:```c #include #include int main() { int i; char a[100]; gets(a); …… 题解列表 2020年01月31日 0 点赞 0 评论 271 浏览 评分:0.0
[编程入门]50%错误 摘要:解题思路:50%错误,,不知道哪有问题注意事项:参考代码:lst=list(input().split()) s=" " lst2=[] for i in lst: if "a"<=i…… 题解列表 2020年12月01日 0 点赞 2 评论 382 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要: /* 输入一行电报文字,将字母变成其下一字母 (如’a’变成’b’……’z’变成’a’其它字符不变)。*/#include <stdio.h>int main(){ char c; while((c…… 题解列表 2017年07月20日 1 点赞 1 评论 833 浏览 评分:0.0
c++语言解决电报加密 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<string.h>using namespace std;void get(char…… 题解列表 2023年01月11日 0 点赞 0 评论 74 浏览 评分:0.0
函數調用完成加密 摘要:解题思路:1.先要讀入字符串,因需要包含可能的空格,故定義字符數組後,不能只用%s讀入 2.數組讀入後,需要遍歷,查找符合條件的字符,再來調用函數 …… 题解列表 2023年04月01日 0 点赞 0 评论 59 浏览 评分:0.0
电报加密C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char letter[100]; gets(letter); for(in…… 题解列表 2022年01月04日 0 点赞 0 评论 160 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:用字符数组来存放字符串,在a~z、A~Z之间的字符加一,当字符为‘z'和'Z'时,字符减去25,当字符为其它字符时,原字符数出。注意事项:输入字符串时,不能用scan…… 题解列表 2018年06月10日 0 点赞 0 评论 353 浏览 评分:0.0