星期判断机(( •̀ ω •́ )✧) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); switch(n) { cas…… 题解列表 2023年10月08日 0 点赞 0 评论 183 浏览 评分:0.0
题解 1783: 星期判断机 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; switch(a) …… 题解列表 2023年12月17日 0 点赞 0 评论 68 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:days= ['Monday', 'Tuesday', 'Wednesday', 'Thursday', …… 题解列表 2024年11月20日 1 点赞 0 评论 110 浏览 评分:0.0
星期判断机 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch…… 题解列表 2023年05月07日 0 点赞 0 评论 103 浏览 评分:0.0
1783: 星期判断机(不用switch) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a;if(a==0) …… 题解列表 2024年01月06日 0 点赞 0 评论 72 浏览 评分:0.0
1783: 星期判断机switch-case 和map容器两种方法解决 摘要:解题思路:注意事项:参考代码:switch-case方法#includeusing namespace std; int main() { int week; cin>>wee…… 题解列表 2023年09月25日 0 点赞 0 评论 123 浏览 评分:0.0
编写题解 1783: 星期判断机 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; switc…… 题解列表 2024年01月06日 0 点赞 0 评论 106 浏览 评分:0.0
用swtich判断星期 摘要:解题思路:设一个未知数表示要获取的星期,然后套switch的模板即可。注意事项:1.单词不要拼错,"input error"后面有个"!"; &nb…… 题解列表 2025年02月28日 0 点赞 0 评论 23 浏览 评分:0.0
编写题解 1783: 星期判断机(python) 摘要:解题思路:注意事项:参考代码:if __name__ == '__main__': s = ['Monday', 'Tuesday', '…… 题解列表 2023年02月13日 0 点赞 0 评论 152 浏览 评分:0.0