1048题自定义函数之字符串拷贝-题解(C语言代码)简单易懂 摘要:简单易懂 #include "stdio.h" void fun (char a[],char b[],int N,int M) { int i,j=0; for(i=M-1;…… 题解列表 2020年02月03日 0 点赞 0 评论 437 浏览 评分:0.0
轻松解决它 有问题可以留言( C语言代码) 摘要: ```c #include int main() { int i, j, x, y, length; char a[100], b[100]; scanf("…… 题解列表 2020年02月03日 0 点赞 2 评论 425 浏览 评分:9.9
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:#include int main() { int n,m; int i; char s[100]; scanf("%d",&n); getchar();//吸收回车,防止s【…… 题解列表 2020年01月31日 0 点赞 0 评论 399 浏览 评分:9.9
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:#include #include int main() { int n,m; char a[100]; int i,l; scanf("%d",&n); scanf("%s…… 题解列表 2020年01月27日 0 点赞 0 评论 428 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:```c #include void f(char str1[],int m) { int i,j; char str2[100]; for(i=m-1,j=0;;i++,j++…… 题解列表 2019年12月19日 0 点赞 0 评论 509 浏览 评分:9.9
[编程入门]自定义函数之字符串拷贝 (Java代码) 摘要: import java.util.Scanner; public class Main { public static void main(…… 题解列表 2019年12月18日 0 点赞 0 评论 404 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(Python代码) 摘要:** 代码如下:** def JQ(a,b): a=a[b:len(a)+1] print(a) n=int(input()) x=…… 题解列表 2019年12月05日 0 点赞 0 评论 1028 浏览 评分:6.0
[编程入门]自定义函数之字符串拷贝-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { char chr_char[1000]; int n_int; (c…… 题解列表 2019年11月29日 0 点赞 0 评论 283 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(Python代码) python 摘要:```python n = input()#输入 str = input() #输入 m = int(input())#输入 str=str[m-1:]#截取m-1到字符串末尾的字符串 pr…… 题解列表 2019年11月22日 0 点赞 0 评论 557 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要: 应该叫神奇的getchar() ```c #include #include int main() { int m,n; scanf("%d",&n); char a[…… 题解列表 2019年10月31日 0 点赞 0 评论 227 浏览 评分:0.0