字符串连接-题解(C语言代码) 运用指针的方法 摘要:```c 运用指针 //不借用任何字符串库函数实现无冗余地接受两个字符串,然后把它们无冗余的连接起来 #include int main(void) { char string1[1…… 题解列表 2019年08月12日 0 点赞 0 评论 797 浏览 评分:9.9
字符串连接-题解(C语言代码) 摘要:小白成长之路之简单粗暴解题 ```c # include int main() { int a[100],b[100]; while(scanf("%s%s",&a,&b)!=EOF)…… 题解列表 2019年10月23日 0 点赞 1 评论 727 浏览 评分:9.0
字符串连接-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2019年11月16日 0 点赞 0 评论 762 浏览 评分:0.0
字符串连接-题解(C语言代码) 摘要:思路:接收两个字符串,输出两个字符串(非真正连接,仅在输出时两个字符串一起输出) 参考代码: ``` #include int main() { char a[100]={'0'},b…… 题解列表 2020年02月19日 0 点赞 0 评论 394 浏览 评分:0.0
字符串连接 摘要:解题思路: 注意事项: 参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a, b; cin>>…… 题解列表 2021年11月26日 0 点赞 0 评论 239 浏览 评分:6.0
简单实现字符串连接 摘要:解题思路:个人思路比较简单(可能我比较菜)注意事项:每完成一次连接,最后一个字符要变成'\0'参考代码:#include<stdio.h>#include<string.h>conne…… 题解列表 2022年02月20日 0 点赞 0 评论 415 浏览 评分:9.9
字符串连接 (Java代码) 摘要:import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.util.*; public class M…… 题解列表 2022年06月08日 0 点赞 0 评论 107 浏览 评分:0.0
871da84df5s6af4ads\ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a,b; while(cin>>a>>b) {…… 题解列表 2022年08月10日 0 点赞 0 评论 103 浏览 评分:0.0
字符串连接——python 摘要:解题思路:注意事项:参考代码:while True: try: a,b = map(str,input().split()) print(a+b) except…… 题解列表 2023年04月05日 0 点赞 0 评论 90 浏览 评分:0.0
C++字符串连接 摘要:# string ```c++ #include using namespace std; int main() { string a,b; while(cin>…… 题解列表 2023年06月08日 0 点赞 0 评论 112 浏览 评分:0.0