C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c",&c1); scanf("%c",&c2); s…… 题解列表 2018年11月02日 0 点赞 0 评论 312 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:#include int main() { char a[10]; gets(a); for(int i=0;a[i]!=0;i++) { if(a[i]=='C')a[i]…… 题解列表 2019年07月23日 0 点赞 0 评论 351 浏览 评分:0.0
[编程入门]密码破译-题解(C语言代码) 摘要:> 要求 ```c 要将"China"译成密码,译码规律是:用原来字母后面的第4个字母代替原来的字母. 例如,字母"A"后面第4个字母是"E"."E"代替"A"。因此,"China"应译…… 题解列表 2019年11月03日 0 点赞 0 评论 458 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("Glmre"); return 0; }…… 题解列表 2018年05月11日 0 点赞 0 评论 524 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:使用字符数组进行输出注意事项:数组下标从0开始参考代码:#include <stdio.h>int main(void){ char China[] = "China" ; for(int …… 题解列表 2017年10月21日 0 点赞 0 评论 908 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路: 使用数组注意事项: 注意输出的时候要用%c参考代码: #include<stdio.h>int main(){ char a[]={'C','h',&#…… 题解列表 2017年08月24日 5 点赞 1 评论 766 浏览 评分:0.0
编写题解 1003: [编程入门]密码破译 摘要:#include <iostream>using namespace std;string a;int main(){ cin>>a; for(int i=0;i<=a.size()-1;i++) …… 题解列表 2022年05月07日 0 点赞 0 评论 115 浏览 评分:0.0
[编程入门]密码破译 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c…… 题解列表 2023年10月28日 0 点赞 0 评论 71 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>main(){ char c1='C',c2='h',c3='i',c4='n&…… 题解列表 2017年12月03日 0 点赞 0 评论 593 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题3.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; //变量名 scanf("%c%c%c%c%c",&c1,&c2,&…… 题解列表 2018年03月14日 1 点赞 0 评论 1082 浏览 评分:0.0