编写题解 1022: [编程入门]筛选N以内的素数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool qsh(int n) { for(int i=2;i<n;i++) {…… 题解列表 2024年05月30日 0 点赞 0 评论 450 浏览 评分:0.0
完数的判断 for循环(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int N,a[200],i,j,l; scanf("%d",&N); for(i=1;i<=…… 题解列表 2024年05月30日 0 点赞 0 评论 138 浏览 评分:0.0
1095 3n+1(递归解决) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>long long digui(int n,long long m){ if(n==1)//如果是 1 ,就退出循环 { m+=1;…… 题解列表 2024年05月30日 0 点赞 0 评论 242 浏览 评分:0.0
完数的判断 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年05月30日 0 点赞 0 评论 378 浏览 评分:0.0
1094字符串的输入输出(两个while循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n; scanf("%d",&n); char s[10…… 题解列表 2024年05月30日 0 点赞 0 评论 223 浏览 评分:0.0
编写题解 2832: 第n小的质数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool zs(int n){ for(int i=2;i<n/2+1;i++) {…… 题解列表 2024年05月30日 0 点赞 0 评论 206 浏览 评分:0.0
c语言简单思路,拿走不谢 摘要:分两部分分析:1,4个数中选3个。2,选出来的3个排列组合。ok,思路清晰了下面废话不多说直接展示。参考代码:#include <stdio.h> int main() { int a[4],…… 题解列表 2024年05月30日 0 点赞 0 评论 412 浏览 评分:0.0
测试数据有问题 摘要:错误样例样例:33 1 0预期:2实际:3注意事项:参考代码:贴上代码:right方法是错误的import java.util.Arrays; import java.util.Random; i…… 题解列表 2024年05月30日 2 点赞 0 评论 460 浏览 评分:6.0
找规律,凑组合 摘要:解题思路: 找规律注意事项: 假后面只能更假假或真真,真后面只能更真假或假真可能的组合有「假,假,假」「真,真,假」「真,假,真」「假,真,真」参考代码:#include<stdio.h> lo…… 题解列表 2024年05月30日 1 点赞 0 评论 396 浏览 评分:2.0
BFS模版题(很模版) 摘要: ```cpp #include using namespace std; typedef pair PII; const int N=1000; int n,end_day; c…… 题解列表 2024年05月30日 0 点赞 0 评论 250 浏览 评分:0.0