2788: 晶晶赴约会
摘要:解题思路:注意事项:参考代码:import sys a = int(input())if a < 1 or a > 7: sys.exit() #退出程序elif a != ……
编写题解 2788: 晶晶赴约会
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a; cin>>a; if(a!……
编写题解 2788: 晶晶赴约会,python超简单
摘要:解题思路:用列表注意事项:无参考代码:# 获取用户输入的日期(星期几)day = int(input())# 定义一个列表,包含晶晶的上课日busy_days = [1, 3, 5]# 判断输入的日期……
编写题解 2788: 晶晶赴约会python
摘要:解题思路:注意事项:参考代码:n = int(input())
if n <= 5:
if n % 2 == 0:
print("YES")
else:
 
可以稍微少打一些代码
摘要:解题思路:注意事项:不要忘记switch语句的花括号参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); switch(a……
2788: 晶晶赴约会
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int day;
int arr[4]……
2788普普通通的解题方法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; scanf("%d",&n); if (n == 1 || n == 3 || n == 5……