1034-自定义函数之数字分离 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;void sep(int n){ string s=to_s…… 题解列表 2022年10月05日 0 点赞 0 评论 280 浏览 评分:0.0
另一种思路来解决数字后移 摘要:解题思路:通过将数组复制到此数组后,打印对应位来解决注意事项:注意打印循环i的起始值,否则会写成数字前移。参考代码:#include <stdio.h>int main(){ int x, n;…… 题解列表 2022年10月05日 0 点赞 0 评论 269 浏览 评分:0.0
1035-自定义函数之字符类型统计 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;void count(string s){ int a=0,…… 题解列表 2022年10月05日 0 点赞 0 评论 285 浏览 评分:0.0
1036-带参数宏定义练习 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define SWAP(x,y) {int t=x;x=y;y=t;} int main()…… 题解列表 2022年10月05日 0 点赞 0 评论 288 浏览 评分:0.0
1037-宏定义的练习 语言:C++ 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define REM(x,y) t=x%yint main(){ int a,b,t; ci…… 题解列表 2022年10月05日 0 点赞 0 评论 320 浏览 评分:0.0
python 完成了75%的小伙伴可以看一下 摘要:解题思路:深度递归注意事项:如果完成了75%并出现运行错误,可能是因为数组越界参考代码:m, n = map(int, input().strip().split())figure = []#存储输入…… 题解列表 2022年10月05日 0 点赞 0 评论 317 浏览 评分:0.0
1058: 二级C语言-求偶数和(很简单的东西) 摘要: #include int main() { int n; int sum=0; int a[100]; //通过…… 题解列表 2022年10月05日 0 点赞 0 评论 275 浏览 评分:0.0
简洁明了的代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { long N,sum=0; scanf("%d",&N); for(int…… 题解列表 2022年10月05日 0 点赞 0 评论 263 浏览 评分:0.0
记录自己答案:1021 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; double xn1,xn=1.0; scanf("%d",&x); xn1=(xn+x/xn)/…… 题解列表 2022年10月05日 0 点赞 0 评论 311 浏览 评分:0.0
java 20行 基础循环与判断 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { int …… 题解列表 2022年10月06日 0 点赞 0 评论 303 浏览 评分:0.0