蓝桥杯基础练习VIP-报时助手-题解(C++代码)-笔记 摘要:解题思路:注意事项:输入中间有空格,思路很简单,分情况就行了,然后直接读取相应数字的字符串。参考代码:#include<bits/stdc++.h> using namespace std; ch…… 题解列表 2020年08月01日 0 点赞 0 评论 495 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要:#include <bits/stdc++.h> using namespace std; unordered_map<int, string> table{ {0, "zero"}, {…… 题解列表 2020年07月26日 0 点赞 0 评论 640 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要:``` #include using namespace std; const char* s[60]={"zero","one","two","three","four","five",…… 题解列表 2020年06月21日 0 点赞 0 评论 290 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; string to_english(int t) { switch (t) { c…… 题解列表 2020年03月09日 0 点赞 0 评论 714 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要: #include using namespace std; int main() { unsigned int h,m; char a[2…… 题解列表 2020年02月06日 0 点赞 0 评论 437 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <iostream> using namespace std; string A[20] = {"zero…… 题解列表 2019年03月07日 0 点赞 0 评论 548 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:确定好小时的范围,分钟的范围,整一个switch循环期待更简洁的代码!!!!参考代码:#include <iostream>using namespace std;void display(…… 题解列表 2019年01月26日 0 点赞 0 评论 722 浏览 评分:4.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<algorithm>#include<string>#include <ctype.…… 题解列表 2018年11月21日 0 点赞 0 评论 639 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码)(条件语句) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;string ans[100]={"zero","one","two","thre…… 题解列表 2018年11月13日 0 点赞 0 评论 586 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:运用string定义数组保存0-20的英文,再储存30,40,50的英文储存到str[30],str[40],str[50], 再输入h,m,判断h,m是否小于等于20,如果小于则直接输出…… 题解列表 2018年06月14日 2 点赞 0 评论 868 浏览 评分:0.0