题解 2783: 判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (a>=10&&a<=99) print…… 题解列表 2023年08月17日 0 点赞 0 评论 234 浏览 评分:0.0
题解 2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b; scanf("%d %d", &a, &b); if (a>=10||b>…… 题解列表 2023年08月17日 0 点赞 0 评论 223 浏览 评分:0.0
题解 2786: 判断能否被3、5、7整除 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (a%3==0&&a%5==0&&a%7…… 题解列表 2023年08月17日 0 点赞 0 评论 550 浏览 评分:0.0
编写题解 2835: 计算书费 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int i; float sum=0.0; for(i=0…… 题解列表 2023年08月17日 0 点赞 0 评论 257 浏览 评分:0.0
题解 2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if ((10*a/12)>(10*a/30+…… 题解列表 2023年08月17日 0 点赞 0 评论 317 浏览 评分:0.0
题解 2790: 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f", &a); if ((int)a>=0&&(int)a…… 题解列表 2023年08月17日 0 点赞 0 评论 303 浏览 评分:0.0
题解 2791: 计算邮资 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; char b; scanf("%d %c", &a, &b); if (…… 题解列表 2023年08月17日 0 点赞 0 评论 240 浏览 评分:0.0
[python]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:my_str = input() letter = 0 num = 0 space = 0 other = 0 for i in my_str: if…… 题解列表 2023年08月18日 0 点赞 0 评论 158 浏览 评分:0.0
又是一个动态规划的题 摘要:#include<iostream> using namespace std; int main() { string s; while(getline(cin,s)) …… 题解列表 2023年08月18日 0 点赞 0 评论 258 浏览 评分:0.0
1303: 统计数字(C++ STL) 摘要:# STL map ```c++ #include #include #include #include #include using namespace std; mapnums;…… 题解列表 2023年08月18日 0 点赞 0 评论 303 浏览 评分:0.0