C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:参考代码:#include<stdio.h> #include<string.h> int main() { char a[1000],b[1000]; int i,l; gets(…… 题解列表 2018年04月26日 0 点赞 0 评论 618 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2019年03月08日 0 点赞 0 评论 408 浏览 评分:0.0
利用指针解决字符数组 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str; g…… 题解列表 2023年12月26日 0 点赞 0 评论 118 浏览 评分:0.0
[编程入门]自定义函数之字符串反转-题解(C语言代码) 摘要:参考代码:#include <stdio.h> #include <string.h> int exchange(int len,char a[],char b[]);; main() {…… 题解列表 2020年07月27日 0 点赞 0 评论 207 浏览 评分:0.0
为啥会时间超限。。。。。。有大佬抬一手吗 摘要:解题思路:代码有问题。。。。注意事项:参考代码:#include<stdio.h>void zi(char n[],int i){ int j=0; char c; for(;j<=…… 题解列表 2018年03月06日 0 点赞 3 评论 397 浏览 评分:0.0
[编程入门]自定义函数之字符串反转-题解(C语言代码)(函数法) 摘要:提目: 写一函数,使输入的一个字符串按反序存放,在主函数中输入输出反序后的字符串(不包含空格) 1、运用函数数组 2、排除空格 #include #include …… 题解列表 2020年02月26日 0 点赞 0 评论 347 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:话不多,直接看代码参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>void f(char a[],char b[]){ in…… 题解列表 2017年07月19日 1 点赞 0 评论 860 浏览 评分:0.0
字符串与字符的应用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; for(int i=0;i<100;i…… 题解列表 2024年09月10日 0 点赞 0 评论 80 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>main(){ char a[100],i,s; gets(a); s=strlen(a); for…… 题解列表 2018年12月17日 0 点赞 0 评论 348 浏览 评分:0.0
StringBuilder实现字符反转拼接 摘要:解题思路:注意事项:参考代码: import java.util.Scanner; &n 题解列表 2024年05月20日 0 点赞 0 评论 100 浏览 评分:0.0