C语言训练-字符串正反连接 (Java代码)超级简单代码
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class test002 { public static void main(String[] args……
C语言训练-字符串正反连接 (C++代码)
摘要:注意事项:VS2017是gets_s()不是gets().参考代码:#include<iostream>
#include<cstring>
using namespace std;
int m……
字符串的修改(摸鱼做法)
摘要:根据题意 每个字符想变成另一个字符 只需一步即可 所以我们只需要 找出两个字符串中相同的字符个数 然后拿最大的长度减去他们即可
```c
#include
using namespace s……
C语言训练-字符串正反连接-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#includeint main(){ char a[100]; gets(a); for(int i=0;a[i]!='\0';i++) p……
C语言训练-字符串正反连接-题解(C语言代码)
摘要:```c
#include
#include
int main()
{
char a[50],b[50];
scanf("%s",a);
strcpy(b,a); ……
C语言训练-字符串正反连接 (C语言描述)
摘要:```c
#include
#include
int main()
{
char s1[100],s2[100];
scanf("%s",s1);
int i,j……
C语言训练-字符串正反连接 (C语言代码)简洁的代码
摘要:解题思路: 把颠倒顺序的字符串接在原字符串后面注意事项:参考代码:#include<stdio.h>
#include<string.h>
int main(){
char input[……
C语言训练-字符串正反连接-题解(C语言代码)务必熟练使用字符串库函数
摘要:解题思路:字符串长度函数:strlen();字符串连接函数:strcat();参考代码:#include<stdio.h>
#include<string.h>
int fun(char a[],……
C语言训练-字符串正反连接-题解(C语言代码)值得参考
摘要: #include
#include
int main()
{
char x[200],y[60];
int i;
gets(……