(Python)使用split()方法分隔两个加数 摘要:split()方法能指定以某种字符串将分隔符对字符串进行切片,返回包含所有切片的列表 [关于split()方法的介绍](https://www.runoob.com/python/att-strin…… 题解列表 2024年01月15日 0 点赞 0 评论 324 浏览 评分:9.9
可以用数组的方式 摘要:解题思路:数组循环写入3个数字,输出第二个数字注意事项:参考代码:#include<stdio.h>int main(){ int a[3]; for(int i=0;i<3;i++) …… 题解列表 2024年01月15日 1 点赞 0 评论 1104 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月15日 0 点赞 0 评论 177 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年01月15日 0 点赞 0 评论 430 浏览 评分:9.9
1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:此题需要把算式写出来参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; …… 题解列表 2024年01月15日 0 点赞 0 评论 158 浏览 评分:9.9
2817: 级数求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long k; double s=0…… 题解列表 2024年01月15日 0 点赞 1 评论 258 浏览 评分:9.9
题解 1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long m,n,gcd=0; cin>…… 题解列表 2024年01月15日 0 点赞 0 评论 135 浏览 评分:9.9
最大公约数与最小公倍数 1011 摘要:解题思路:#include<iostream>#include<algorithm>using namespace std;int main(){int a,b;cin>>a>>b;cout<<__g…… 题解列表 2024年01月15日 0 点赞 0 评论 168 浏览 评分:9.9
题解 1147: C语言训练-角谷猜想 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long n; cin>>n; fo…… 题解列表 2024年01月15日 0 点赞 0 评论 194 浏览 评分:9.9
3013: 求小数的某一位 摘要:解题思路:注意事项:这里的cout要在外面写a的值可以改变参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long lo…… 题解列表 2024年01月15日 0 点赞 0 评论 219 浏览 评分:9.9