题解列表

筛选

[编程入门]数组插入处理

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a[15],z;int main(){  for(int i=1……

艰难的艰难

摘要:解题思路:注意事项:参考代码:#include<math.h>#include<stdio.h>int prime(int n){ for(int i=2;i<=sqrt(n);i++) { if(……

字符串的输出(C++)语言

摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace……

蓝桥杯基础练习VIP-时间转换

摘要:解题思路:不就是练一下“/”和“%”嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int t;int main(){    scan……