[编程入门]自定义函数之字符串连接-题解(C++代码) 摘要: #include using namespace std; int main() { char c1[100]; char c2[1…… 题解列表 2020年01月30日 0 点赞 0 评论 290 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <cstdio>using namespace std;int main(){ …… 题解列表 2017年12月06日 0 点赞 0 评论 537 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:解题思路:利用printf不会打印结束标志,来显示两个字符串的拼接效果注意事项:参考代码:include<stdio.h>int str(char a[], char b[]) //…… 题解列表 2018年11月17日 0 点赞 0 评论 243 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码) 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char a[100],b[100]; scanf("%s%s",a,…… 题解列表 2018年03月12日 0 点赞 0 评论 477 浏览 评分:0.0
最普通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a[150]; char b[51]; gets(a); gets(b); …… 题解列表 2024年11月20日 0 点赞 0 评论 231 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:C语言存储字符串是由操作系统分配一块连续的空间,字符串有多长,该空间就等分几份,每份空间都有对应的地址,且地址也连续。首地址所对应的空间存储第一个字符,与首地址相邻的地址对应的空间存储第二个…… 题解列表 2024年04月24日 0 点赞 0 评论 155 浏览 评分:0.0
C语言 自定义函数之字符串连接& 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#define Long 20int main(){ char a[Long]; …… 题解列表 2022年11月16日 0 点赞 0 评论 65 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-(指针版) 摘要:题解如下: #include void connect(char *s,char *t,char *q) { int i=0; for(;*s!=…… 题解列表 2019年06月17日 0 点赞 0 评论 274 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)库函数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main(void) { char s[100], s2[100]; …… 题解列表 2018年10月31日 0 点赞 0 评论 381 浏览 评分:0.0
编写题解 1032: [编程入门]自定义函数之字符串连接--神奇的是这种方法内存还小 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void strCat(char str1[],char str2[]){ for(int i…… 题解列表 2022年03月08日 0 点赞 0 评论 111 浏览 评分:0.0