蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要:#include <bits/stdc++.h> using namespace std; unordered_map<int, string> table{ {0, "zero"}, {…… 题解列表 2020年07月26日 0 点赞 0 评论 528 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要:``` #include using namespace std; const char* s[60]={"zero","one","two","three","four","five",…… 题解列表 2020年06月21日 0 点赞 0 评论 181 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; string to_english(int t) { switch (t) { c…… 题解列表 2020年03月09日 0 点赞 0 评论 547 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要: #include using namespace std; int main() { unsigned int h,m; char a[2…… 题解列表 2020年02月06日 0 点赞 0 评论 234 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <iostream> using namespace std; string A[20] = {"zero…… 题解列表 2019年03月07日 0 点赞 0 评论 347 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:确定好小时的范围,分钟的范围,整一个switch循环期待更简洁的代码!!!!参考代码:#include <iostream>using namespace std;void display(…… 题解列表 2019年01月26日 0 点赞 0 评论 597 浏览 评分:4.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<algorithm>#include<string>#include <ctype.…… 题解列表 2018年11月21日 0 点赞 0 评论 448 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码)(条件语句) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;string ans[100]={"zero","one","two","thre…… 题解列表 2018年11月13日 0 点赞 0 评论 443 浏览 评分: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 评论 605 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手 (C++代码) 摘要:解题思路:注意事项:1.英文单词的书写2.输出格式参考代码:#include<iostream> using namespace std; void exchange2(int d) { s…… 题解列表 2018年04月09日 6 点赞 1 评论 1183 浏览 评分:8.0