自定义函数之字符串拷贝(JAVA) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2022年01月09日 0 点赞 0 评论 108 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:#include<bits/stdc++.h> using namespace std; int main() { int length; cin >> length…… 题解列表 2021年12月21日 0 点赞 0 评论 110 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdio.h>int main(){ int a,b,i; char arr[100]; scan…… 题解列表 2021年12月20日 0 点赞 0 评论 188 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝(最简)(java代码) 摘要:解题思路: 拿到字符串之后直接截取从 m-1 到 n。注意事项: 字符串截取 传入两个参数:substring(int beginIndex, int en…… 题解列表 2021年12月19日 0 点赞 1 评论 293 浏览 评分:9.9
函数之字符串拷贝-C语言 摘要:解题思路:按顺序输入题目要求:数字n 一行字符串 数字m;那数字可以用scanf()函数输入,一串字符串的输入可以用gets()或者scanf()和for循环结合来实现,但是当在scanf()后面…… 题解列表 2021年12月18日 0 点赞 0 评论 158 浏览 评分:0.0
简单,初学者 摘要:解题思路:写一个与输入的数组a相反的数组b;连接a数组与b数组。注意事项:此题默认没有空格。如果想输入带空格的数组,把scanf("%s",a);改为gets(a);并用c++ 或者 用for…… 题解列表 2021年12月07日 0 点赞 0 评论 109 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,j=0; char a[100],b[100]; scanf("%d",&n); getch…… 题解列表 2021年11月30日 0 点赞 0 评论 272 浏览 评分:0.0
Java数组输入输出-错误频发 摘要:注意事项:具本人目前了解,Java语言无法直接输入char型数组,这时需输入String字符串,再用charAt()函数将String型字符串转换为char型数组。在此题目中,本人出现多次错误,首先时…… 题解列表 2021年11月15日 0 点赞 0 评论 471 浏览 评分:9.9
用字符切片来解决 摘要:解题思路:注意事项:参考代码:n = int(input())x = str(input())m = int(input())print(x[m-1:])…… 题解列表 2021年11月10日 0 点赞 0 评论 169 浏览 评分:0.0
函数加指针 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <string.h>#define N 20int main(){ int n, i, lo, m, k; …… 题解列表 2021年11月03日 0 点赞 0 评论 137 浏览 评分:0.0