题解列表
第一个带类的C++程序
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,t=""; cin>>s; ……
我是菜狗。。。。。。。。。。。。
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int b; for(int i=0;i<10;……
要不断的用标签缩小,比较有这个意识了,还有借助空列表
摘要:解题思路:去年不会,今年还是不会但是至少还有点思路只是比较不完整注意事项:参考代码:n,m=map(int,input().split())l=[i+1 for i in range(n)]print……
别管,输出就完了c++
摘要:解题思路:1、先定义一个字符数组2、输入n,就是输入多少个数,用for循环3、然后输入m是从哪开始取4、后面调用fun函数,把他妈的m和该死的字符串s传过去,从哪开始就从哪输出,非要纠结题目拷贝可以再……
C++实现面向对象设计之时间类
摘要:```c++
#include
using namespace std;
class Time{
private: //私有
int h,m,s;
pub……
蓝桥杯算法提高VIP-计算质因子
摘要:```c++
#include
using namespace std;
int main()
{
int n;
cin>>n;
int k = 0;
……
1981: 输出M到N的数
摘要:```c++
#include
using namespace std;
int main()
{
int m,n;
cin>>n>>m;
if(n>=m)……