汪汪与打针(乐,爱打狂犬疫苗是吧) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b,i=0;//i是打的疫苗数 while(~scanf("%d%d",&a,&b)…… 题解列表 2023年10月27日 0 点赞 0 评论 366 浏览 评分:0.0
2247: 蓝桥杯算法提高-输出三个整数的最大数---三目运算符 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>…… 题解列表 2023年10月27日 0 点赞 0 评论 368 浏览 评分:0.0
2246: 蓝桥杯算法训练-字符串合并 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str1,str2; c…… 题解列表 2023年10月27日 0 点赞 0 评论 387 浏览 评分:0.0
2236: 蓝桥杯算法训练-大小写转换 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { string str; cin>>st…… 题解列表 2023年10月27日 0 点赞 0 评论 412 浏览 评分:0.0
报时助手Python 摘要:解题思路:注意事项:参考代码:nums = {0:'zero', 1:'one', 2:'two', 3:'three', 4:…… 题解列表 2023年10月27日 0 点赞 0 评论 369 浏览 评分:0.0
找出最长的字符串来(C语言) 摘要:参考代码: ```c #include #include int main() { char str[5][100]; int len[5]={0}; int i=0; fo…… 题解列表 2023年10月27日 0 点赞 0 评论 572 浏览 评分:0.0
2114: 信息学奥赛一本通T1173-阶乘和 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;import java.math.BigInteger;public class Main { public stati…… 题解列表 2023年10月27日 0 点赞 0 评论 424 浏览 评分:0.0
你猜适不适合晨练呀 摘要:**代码:** ```C++ #include using namespace std; int main() { int t; cin>>t; if(t>=25&&t…… 题解列表 2023年10月27日 0 点赞 0 评论 408 浏览 评分:0.0
筛选N以内素数 摘要:解题思路:1.遍历2-N的每一个数2.用求模方式判断是否是素数注意事项:参考代码:#include<stdio.h> int main() { int n,i,j; scanf…… 题解列表 2023年10月27日 0 点赞 0 评论 310 浏览 评分:0.0
与2无关的数 摘要:参考代码: ```c #include int m(int a) { while(a) { int b=a%10; if(b==2) …… 题解列表 2023年10月27日 0 点赞 0 评论 480 浏览 评分:0.0