蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要:有点复杂 char number[][10]={"zero","one","two","three","four","five","six","seven","eight","nine","ten"…… 题解列表 2020年03月19日 0 点赞 0 评论 1458 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要: #include void cl(int h,int m)//处理并输出函数 { char a[50][50]={{"zero"}, {"one"},{"two"}, {"three"},…… 题解列表 2020年03月02日 0 点赞 0 评论 1152 浏览 评分:0.0
傻瓜写法 摘要:没啥好的思路 就按照逻辑一步一步来了 很好懂 直接上代码 ```cpp #include using namespace std; string numtoE[24]={"zer…… 题解列表 2020年02月29日 0 点赞 7 评论 1126 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要:思路:利用哈希数组解题 参考代码: ``` #include char a[25][10]={"zero","one","two","three","four","five","six","…… 题解列表 2020年02月27日 0 点赞 0 评论 1467 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手-题解(C语言描述。枚举的运用) ```c#includeenumtimes{zero,one,two,three,four,five,six,seven,eight,nine,ten,eleven,twelve,thirteen,fourteen,fifteen,sixteen, 题解列表 2020年02月18日 0 点赞 0 评论 1134 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要:```c #include void Pd(int n) { switch(n) { case 0:printf("zero ");break; case 1:printf(…… 题解列表 2020年02月03日 0 点赞 0 评论 1056 浏览 评分:0.0
一位热心的老大爷-字符指针数组-报时助手-题解(C语言代码) 摘要:想不出来什么好办法,有更好的请留言 #include int main(){ int h,m; char * s1[]={"zero","on…… 题解列表 2019年12月20日 0 点赞 0 评论 1009 浏览 评分:0.0
蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要:```c #include int main(){ int h,m; scanf("%d %d",&h,&m); char *a[]={"zero","one","two","thr…… 题解列表 2019年12月20日 0 点赞 0 评论 1485 浏览 评分:8.5
蓝桥杯基础练习VIP-报时助手-题解(C++代码) 摘要:```cpp #include #include using namespace std; void A(int a) //函数A打印小时数 { string s[25]={"z…… 题解列表 2019年12月13日 0 点赞 2 评论 1339 浏览 评分:8.4
蓝桥杯基础练习VIP-报时助手-题解(C语言代码) 摘要:拆解判断: ```c #include void Ten(int num)//在十位上的数大于1时,找到对应的“整数”输出 { switch (num) { case 2:pri…… 题解列表 2019年08月06日 0 点赞 0 评论 1078 浏览 评分:0.0