2913: 整数去重 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using…… 题解列表 2025年09月21日 0 点赞 0 评论 558 浏览 评分:0.0
2914: 铺地毯 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using…… 题解列表 2025年09月22日 0 点赞 0 评论 497 浏览 评分:0.0
1231: 杨辉三角 简洁 可读性高 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;in…… 题解列表 2025年09月22日 0 点赞 0 评论 664 浏览 评分:0.0
1807: [编程基础]输入输出练习之格式控制 摘要:注意事项:每个字符都要占八个位置参考代码:#include<stdio.h>intmain(){inta,b,c;&…… 题解列表 2025年09月24日 17 点赞 0 评论 1785 浏览 评分:0.0
2798: 整数序列的元素最大跨度值 摘要:#include <bits/stdc++.h>using namespace std;int main(){ int n,maxx= -1e18 ,minn=1…… 题解列表 2025年09月24日 0 点赞 0 评论 670 浏览 评分:0.0
C语言和C++两种写法 摘要:###C语言 无封装#include<stdio.h>#define MAX 100;int main(){ int i,j; int …… 题解列表 2025年09月27日 0 点赞 0 评论 545 浏览 评分:0.0
编写题解 3106: 最优乘车(travel) 摘要:C++代码:```cpp#include #include #include #include using namespace std;const int INF=0x3f…… 题解列表 2025年09月27日 1 点赞 0 评论 474 浏览 评分:0.0
求10000以内n的阶乘 解题思路:注意事项:Python默认限制了可以转换为字符串的整数的最大位数为4300位。由于10000的阶乘远大于这个限制,因此抛出了ValueError。参考代码:importmathimportsyssys.set_int_max_str_digits(100000)#设置sys.set_int_ 题解列表 2025年09月27日 0 点赞 0 评论 526 浏览 评分:0.0
不用switch-case 摘要:解题思路:或的用法注意事项:参考代码:#include <stdio.h>int main() { int day; scanf(&qu…… 题解列表 2025年10月05日 0 点赞 0 评论 376 浏览 评分:0.0
自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:n=int(input())arr=list(map(int,input().split()))a&n…… 题解列表 2025年10月05日 0 点赞 0 评论 475 浏览 评分:0.0