题解列表

筛选

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

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

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

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

二级C语言-阶乘公式求职

摘要:解题思路:简单模拟注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double n,m=1,s=1;int main(){    cin>>n……

二级C语言-成绩归类

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,yx,tg,bjg;int main(){    for(;……