1032: [编程入门]自定义函数之字符串连接(python)
摘要:#### 无需多言
~~~python
def main():
print(input() + input())
if __name__ == '__main__':
……
没用strcat,用的gets和puts,
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void lianj(char f1[],char f2[]){ int k,i,p; ……
[编程入门]自定义函数之字符串连接-题解(C语言代码)
摘要:```c
#include
void strcat(char t[],char s[])
{
int i,j;
i=j=0;
while(t[i]!='\0')
i++;
……
[编程入门]自定义函数之字符串连接-题解(C语言代码)
摘要:```c
#include
#include
void lianjie (char a[],char b[]);
int main()
{
char a[100],b[100];
……
瞅瞅撒,利用指针解决此题,我这绝对是代码量最少的。(C语言描述)
摘要:解题思路:注意事项:参考代码:#include #include #include void main()
{
char a[1024],*c;
gets(a);
in……
[编程入门]自定义函数之字符串连接
摘要:解题思路:利用字符数组的相关知识点注意事项:1.是%s是输出字符串,不要写成%c. 2.输出printf时不要加\n,这是换行符。参考代码:#include<stdio.h……
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)
摘要:#include<stdio.h>
#include<string.h>
void mystrcat(char s1[],char s2[]);
int main(void)
{
char……
[编程入门]自定义函数之字符串连接-题解(C++代码)
摘要:```cpp
#include
#include
using namespace std;
int main()
{
string str1, str2;
getli……
[编程入门]自定义函数之字符串连接-题解(C语言代码)
摘要:#include
#include
int f1(char a[],char b[],char c[])
{
int m,n,i,l=0;
m=strlen(a);
n=strlen……