字符串连接-题解(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<stdio.h>int main(){ char a[100],b[100]; int i,j; while(scanf("%s %s",a,b)!=E…… 题解列表 2019年04月14日 0 点赞 0 评论 573 浏览 评分:0.0
字符串连接 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<algorithm>#include<iostre…… 题解列表 2018年03月13日 0 点赞 0 评论 721 浏览 评分:0.0
C++字符串连接 摘要:# string ```c++ #include using namespace std; int main() { string a,b; while(cin>…… 题解列表 2023年06月08日 0 点赞 0 评论 112 浏览 评分:0.0
字符串连接 (Java代码) 摘要:import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.util.*; public class M…… 题解列表 2022年06月08日 0 点赞 0 评论 107 浏览 评分:0.0
字符串连接 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string…… 题解列表 2018年04月18日 0 点赞 0 评论 520 浏览 评分:0.0
字符串连接-题解(C语言代码) 摘要:#include int main() //直接输入输出就可以 { char a[110]; char b[110]; while(scanf("%s",a)&&scanf("…… 题解列表 2019年08月04日 0 点赞 0 评论 401 浏览 评分:0.0
字符串连接-题解(C语言代码) 摘要:思路:接收两个字符串,输出两个字符串(非真正连接,仅在输出时两个字符串一起输出) 参考代码: ``` #include int main() { char a[100]={'0'},b…… 题解列表 2020年02月19日 0 点赞 0 评论 394 浏览 评分:0.0
字符串连接-题解(C++代码) 摘要:QAQ 我来写题解才发现不能借用任何函数 直接string类型 然后输出就好了 如果不用函数的也简单 定义一个处理字符串的函数 然后第一个数组开大一点一个for循环读到字符串末尾的时候 …… 题解列表 2019年06月13日 0 点赞 0 评论 405 浏览 评分:0.0
字符串连接——python 摘要:解题思路:注意事项:参考代码:while True: try: a,b = map(str,input().split()) print(a+b) except…… 题解列表 2023年04月05日 0 点赞 0 评论 89 浏览 评分:0.0