[编程入门]自定义函数处理最大公约数与最小公倍数-题解(Java代码)
摘要:解题思路:注意事项:参考代码:package LiXiTiXh;import java.util.Scanner; public class A1126 { public sta……
字符串正反连接(c++)短小 好理解
摘要:```cpp
#include
#include
using namespace std;
int main()
{
string s, d;
cin >> s;
d = s;
re……
题解 1126: C语言训练-字符串正反连接
摘要:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char s[50]; char s1[101]……
字符串正反连接 5行代码
摘要: import java.util.Scanner;
public class 字符串正反连接 {
public static void main(String……
字符串的修改(摸鱼做法)
摘要:根据题意 每个字符想变成另一个字符 只需一步即可 所以我们只需要 找出两个字符串中相同的字符个数 然后拿最大的长度减去他们即可
```c
#include
using namespace s……
使用for循环正向反向遍历
摘要:```c
# include
# include
int main(void){
char a[50];
gets(a);
for (int i=0;i=0;i--……
C语言训练-字符串正反连接解决方案
摘要:解题思路: 把a数组正反放到b数组内注意事项: 在b数组结尾处需加上‘\0’参考代码:int main(){ char a[100],b[200]; gets(a); int i……
[编程入门]字符串正反连接-题解(C语言代码)
摘要:解题思路:str1[]输入,str2[]倒叙,str3[]链接注意事项:puts输出str3[]结尾需加'\0'参考代码:#include<stdio.h>#include<strin……