题解 1783: 星期判断机 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; switch(a) …… 题解列表 2023年12月17日 0 点赞 0 评论 58 浏览 评分:0.0
1783: 星期判断机题解(c++) 摘要:#include using namespace std; int main(){ int a; cin>>a; if (a == 0) { cout…… 题解列表 2023年11月05日 0 点赞 0 评论 106 浏览 评分:6.0
星期判断机(( •̀ ω •́ )✧) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int n; scanf("%d",&n); switch(n) { cas…… 题解列表 2023年10月08日 0 点赞 0 评论 149 浏览 评分:0.0
1783: 星期判断机switch-case 和map容器两种方法解决 摘要:解题思路:注意事项:参考代码:switch-case方法#includeusing namespace std; int main() { int week; cin>>wee…… 题解列表 2023年09月25日 0 点赞 0 评论 101 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch(n) { …… 题解列表 2023年05月20日 0 点赞 0 评论 68 浏览 评分:0.0
星期判断机 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; switch…… 题解列表 2023年05月07日 0 点赞 0 评论 87 浏览 评分:0.0
编写题解 1783: 星期判断机(python) 摘要:解题思路:注意事项:参考代码:if __name__ == '__main__': s = ['Monday', 'Tuesday', '…… 题解列表 2023年02月13日 0 点赞 0 评论 122 浏览 评分:0.0
星期判断机 摘要:解题思路:简单的switch 可以解决注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); switch(a) …… 题解列表 2022年11月11日 0 点赞 0 评论 227 浏览 评分:9.9
星期判断机(C++switch) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2022年10月31日 0 点赞 2 评论 417 浏览 评分:9.9
编写题解 1783: 星期判断机 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ enum week{ Sun=0,Mon,Tues,Wed,Thurs,Fri,Sat} day; …… 题解列表 2022年10月19日 0 点赞 0 评论 325 浏览 评分:9.9