题解列表

筛选

对方干净利落的特点

摘要:解题思路:无注意事项:无参考代码:print("**************************")print("Hello World!")print("********************……

1505: 蓝桥杯算法提高VIP-单词个数统计

摘要:题目描述:编写一个程序,输入一个字符串(长度不超过80),然后统计出该字符串当中包含有多少个单词。                 例如:字符串“this  is  a  book”当中包含有4个单词……

题解 2853: 字符替换

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char c[32],l,k;int main(){     cin>>c;   ……

题解 2850: 输出亲朋字符串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[103];int main(){ cin.getline(s,103……

题解 2852: 配对碱基链

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[258];int main(){ cin>>s; for(int i……

1088:A + B通俗易懂

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n;int a,sum;int main(){        while(cin >>……

1089:A + Bwhile循环通俗易懂

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int n,i;int a,sum;int main(){    cin >> n;    w……