他说我标题太短,这下够长了吧。C语言之手写strcat 摘要:这么简单的代码却让我调了半天,结果重写了一遍才过。好玄学啊。。。于是乎学到一件事,不要在垃圾堆上挑挑拣拣,直接把垃圾扔掉重新做。 #include int main…… 题解列表 2022年04月02日 0 点赞 0 评论 548 浏览 评分:2.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char st; while((st=getchar())!=EOF){ if(st==…… 题解列表 2022年06月13日 0 点赞 0 评论 470 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>#include <math.h>int main(){ …… 题解列表 2018年01月15日 10 点赞 2 评论 1596 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码)用函数 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;void insert(char*s1,char*s2,char*s){ int i=0…… 题解列表 2018年05月10日 5 点赞 0 评论 1556 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include int main() { int i = 0,j=0; char a[1000], b[500]; fgets(a, sizeof(a)…… 题解列表 2020年01月27日 0 点赞 1 评论 1901 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:一段简单的代码解决问题 #include #include int main() { char a[10],b[10]; gets(a); gets(b); strcat(a,…… 题解列表 2020年02月05日 0 点赞 1 评论 381 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(Java代码) 摘要:```java public static void main(String[] args) { Scanner input=new Scanner(System.in)…… 题解列表 2020年02月29日 0 点赞 0 评论 1305 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include void lianjie(char a[],char b[]); int main(){ char a[100],b[100]; gets…… 题解列表 2020年03月11日 0 点赞 0 评论 1042 浏览 评分:6.0
[编程入门]自定义函数之字符串连接 (Java描述) 摘要: import java.util.Scanner; public class Main { public static void main(Strin…… 题解列表 2020年04月28日 0 点赞 0 评论 1179 浏览 评分:6.0
[编程入门]自定义函数之字符串连接-题解(C语言代码) 摘要:```c #include #include int main() { char a[50], b[50]; gets(a); gets(b); str…… 题解列表 2020年09月14日 0 点赞 0 评论 1033 浏览 评分:6.0