题解列表
1000: [竞赛入门]简单的a+b c++代码题解
摘要:解题思路:用iostream资源库和cstdio资源库都可解题注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,……
[编程入门]自定义函数处理素数
摘要:解题思路:直接判断是否为素数注意事项:sqrt!参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("……
编写题解 1562: 蓝桥杯算法提高VIP-计算时间
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <stdio.h>
using namespace std;
int main()
{
……
1102: 明明的随机数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std;int n,a[1005],t,s;int main() { cin>>n; fo……