题解列表
字符串的输出(C++)语言
摘要:解题思路:其实在int main(){}下写两个函数会更简单,不用单独再写两个函数注意事项:参考代码:#include<iostream>#include<string>using namespace……
蓝桥杯算法提高VIP-模拟计算器 题解(c++,switch)
摘要:解题思路:直接用switch按题目硬打就欧了!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;char z;int mai……
字符串输入输出函数 (超简单)(c++)
摘要:解题思路:这题会不会?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;double a;int main(){ p……
蓝桥杯基础练习VIP-矩形面积交 题解(c++额。。。)
摘要:解题思路:找出最极端就坐标就比较容易解决这题。注意事项:定义放在里面好点。参考代码:#include<bits/stdc++.h>using namespace std;int main(){ ……
main函数内利用数组进行电报加密
摘要:#include
#include
int main()
{
int i,j;
char a[1000];
gets(a);
i=strlen(a);
for(j=0;j……
蓝桥杯基础练习VIP-时间转换
摘要:解题思路:不就是练一下“/”和“%”嘛!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int t;int main(){ scan……
电报加密数组函数传值指针处理
摘要:#include
char dd(char a[])
{
while(*a!='\0')
{
if((*a>='a'&&*a='A'&&*a……
编写题解 1572: 蓝桥杯算法提高VIP-进制转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int s;
scanf("%x",&s);
printf("%X %d %o",s,s,s……
二级C语言-阶乘公式求职
摘要:解题思路:简单模拟注意事项:参考代码:#include<bits/stdc++.h>using namespace std;double n,m=1,s=1;int main(){ cin>>n……