题解列表
鸡你太美问题(简单到会《Hello world!》的人就会)
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>int main() {printf("cock=0,hen=25,chicken=75\ncock=4,hen=18,c……
用基本自定义函数的知识解决 编写题解 1033: [编程入门]自定义函数之字符提取
摘要:解题思路:遍历字符串数组,判断每一个字符是不是原因字母,如果是元音字母就赋值到一个新的字符数组当中。遍历完成之后,将新的字符串数组输出即可。注意事项:参考代码:#include<stdio.h>voi……
蓝桥杯基础练习VIP-FJ的字符串(C++)
摘要:参考代码:#include <iostream>#include <string>using namespace std;string getAN(int n) { if (n == 1) { ……
感谢支持,谢谢你们的支持
摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a,b,d,j,i; char c; ci……
题解 2831: 画矩形
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,d; char c; c……
C语言训练-百钱百鸡问题
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<"cock=0,hen=25,chick……
编写题解 2901: 查找特定的值
摘要:解题思路: 1、创建三个变量(int n输入个数,m目标 bool z用于判断是否有目标数=false) 2、创建一个数组a[10001] 3、输入输入个数变量n 4、循环输入a数组的第i项 5、输入……
C语言训练-百钱百鸡问题
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ for(int i=0; i<=20; i++) ……