晶晶赴会选择语句 摘要:解题思路:利用switch语句注意事项:一定要用break语句结束参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); s…… 题解列表 2022年12月10日 0 点赞 0 评论 646 浏览 评分:9.0
啊啊啊啊啊(第一次写题解) 摘要:解题思路:注意事项:要有Break!(我是小学生)参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2026年08月05日 1 点赞 0 评论 226 浏览 评分:7.3
2788: 晶晶赴约会 摘要:解题思路:注意事项:参考代码:import sys a = int(input())if a < 1 or a > 7: sys.exit() #退出程序elif a != …… 题解列表 2022年12月01日 0 点赞 0 评论 698 浏览 评分:6.0
晶晶赴约会 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if(n==1||n==3||n==…… 题解列表 2023年01月14日 0 点赞 0 评论 444 浏览 评分:3.0
编写题解 2788: 晶晶赴约会 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a!…… 题解列表 2023年06月03日 0 点赞 0 评论 476 浏览 评分:2.0
编写题解 2788: 晶晶赴约会,python超简单 解题思路:用列表注意事项:无参考代码:#获取用户输入的日期(星期几)day=int(input())#定义一个列表,包含晶晶的上课日busy_days=[1,3,5]#判断输入的日期是否在晶晶的上课日列表中ifdayinbusy_days:#如果是上课日, 题解列表 2024年03月18日 1 点赞 0 评论 824 浏览 评分:2.0
2788: 晶晶赴约会 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (1==a || 3==a || 5==…… 题解列表 2023年11月13日 0 点赞 0 评论 453 浏览 评分:0.0
2788: 晶晶赴约会 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int day; int arr[4]…… 题解列表 2023年11月02日 0 点赞 0 评论 449 浏览 评分:0.0
给用Java的开一下荒土 解题思路:注意事项:参考代码:importjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[]args){Scannerscanner=newScanner(System.in);while(scanner.hasNext()) 题解列表 2023年03月30日 0 点赞 0 评论 487 浏览 评分:0.0
编写题解 2788: 晶晶赴约会python 摘要:解题思路:注意事项:参考代码:n = int(input()) if n <= 5: if n % 2 == 0: print("YES") else:   题解列表 2024年03月06日 0 点赞 0 评论 731 浏览 评分:0.0