1048: [编程入门]自定义函数之字符串拷贝 摘要:#include<bits/stdc++.h> using namespace std; int main() { int length; cin >> length…… 题解列表 2021年12月21日 0 点赞 0 评论 110 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 (C语言代码) 摘要:解题思路:把a[n]需要拷贝的字符串存进去另一个数组b[m]中,然后输出b[m]注意事项:输入字符数组之后,数组最后会自动生成结束符'\n',也就是说a[n]的实际长度是n+1;所以在…… 题解列表 2019年05月07日 0 点赞 0 评论 511 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (Java代码) 摘要:import java.util.Scanner;public class Main { public static void main(String[] args) { Scanner sc = …… 题解列表 2018年12月07日 0 点赞 0 评论 367 浏览 评分:0.0
1048写题记录 摘要:解题思路:简单输入然后进行切片注意事项:目前还不会在一行里面没有空格的输入多个数据,为了避免输入数据太多导致出错的情况,将输入的两个数字分别作为切片的开始和结束来人为限制输出的字符串长度。参考代码:n…… 题解列表 2022年06月06日 0 点赞 1 评论 85 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char a[100],b[100]; int n,m,s=0; scanf("%d",&n…… 题解列表 2019年02月07日 1 点赞 0 评论 346 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>char b[80];void cp(int n,char s[],int m){ int…… 题解列表 2017年12月17日 0 点赞 0 评论 734 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.7 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int n,m,i,j; char str[100]; char str1[100];scanf("%d%s%d"…… 题解列表 2018年01月22日 0 点赞 0 评论 495 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,m,j=0; char a[100],b[100]; scanf("%d%s%d",&n,a,&…… 题解列表 2021年02月01日 0 点赞 0 评论 173 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100int main(){ char str[LEN]={'\0'},result[LEN]…… 题解列表 2021年03月01日 0 点赞 0 评论 113 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-题解(C语言代码) 摘要: #include int main(){ int n,m; char str1[200]={0}; scanf("%d%s%d",&n,str1,…… 题解列表 2020年02月15日 0 点赞 0 评论 281 浏览 评分:0.0