编写题解 2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2;i<…… 题解列表 2024年12月01日 2 点赞 0 评论 549 浏览 评分:9.9
1151: C语言训练-计算一个整数N的阶乘 摘要:解题思路:注意事项:注意阶乘不要超过20,否则超了LONG LONG的范围参考代码:#include<bits/stdc++.h>using namespace std;int main(){ lon…… 题解列表 2024年12月01日 1 点赞 0 评论 272 浏览 评分:9.9
1766: 循环入门练习3题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int sum=0; int n; cin…… 题解列表 2024年12月01日 1 点赞 0 评论 192 浏览 评分:9.9
1765: 循环入门练习2题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int sum=0; for(int i=0;i…… 题解列表 2024年12月01日 1 点赞 0 评论 181 浏览 评分:9.9
2146: 信息学奥赛一本通T1317-组合的输出 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <stdio.h> #include <stdlib.h> using namespace std; …… 题解列表 2024年12月01日 0 点赞 0 评论 473 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{ static String date; static String date1; …… 题解列表 2024年12月01日 0 点赞 0 评论 372 浏览 评分:9.9
快读快写+比较器+合并校验 摘要:直接拿到数据,根据 做左区间进行比较排序,然后记录可合并的最大值 与 全局最大值, 比较可合并最大值与全局最大值是否一致即可java快读快写模板参考代码:import java.io.*;import…… 题解列表 2024年12月01日 1 点赞 1 评论 215 浏览 评分:9.9
不高兴的津津(简单易懂!!!) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[8]; int b[8]; int i; for(i=1;i<=7;i++)…… 题解列表 2024年12月01日 0 点赞 0 评论 368 浏览 评分:9.9
字符串判等 摘要:解题思路:判断两字符串相等注意事项:参考代码:#include <stdio.h>#include<string.h>//为使用strlen函数#define N 1000int main() { …… 题解列表 2024年12月01日 0 点赞 1 评论 346 浏览 评分:9.9
666可以可以可以 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ float x,y,z; char a; scanf("%f%f",&x,&y); z=…… 题解列表 2024年12月02日 2 点赞 2 评论 523 浏览 评分:9.9