C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:字符串处理问题,将那个字符指针弄好就行了注意事项:参考代码:#include<stdio.h>#include<string.h>void jiami(char *p,int len);in…… 题解列表 2017年10月08日 0 点赞 0 评论 969 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:题目只要求我们将字母转换为对应字母表中的下一个字母,而且也只要求是小写字母。所以,设立两个字符数组str[100]和sec[100],并求出其中一个字母的长度作为循环的条件。在str[i]>…… 题解列表 2017年10月16日 1 点赞 0 评论 1260 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:/* ez */ #include<stdio.h> int main() { char ch[1000]; gets(ch); …… 题解列表 2017年10月29日 1 点赞 0 评论 957 浏览 评分:0.0
循环数组就好啦 摘要:解题思路:循环数组的思想就行拉注意事项:参考代码:#include<cstdio>#include <cstring>#include <ctype.h> using namespace std;in…… 题解列表 2017年12月04日 1 点赞 0 评论 850 浏览 评分: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 评论 1004 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voiod main(){char a[100];int i,j;gets(a);j=strlen(…… 题解列表 2017年12月13日 0 点赞 0 评论 663 浏览 评分: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 评论 743 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] age){ …… 题解列表 2017年12月29日 0 点赞 0 评论 874 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <cstring>#include <iomanip>using namespac…… 题解列表 2018年01月18日 0 点赞 0 评论 922 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题9.10 (C语言代码) 摘要:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100]; scanf("%[^\n]s",ch); int n,i;…… 题解列表 2018年02月02日 0 点赞 0 评论 619 浏览 评分:0.0