题解 2788: 晶晶赴约会

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

新手 晶晶赴会

摘要:解题思路:简单判断邀约的星期是否为偶数注意事项:参考代码#include<stdio.h>int main(){    int a;    scanf("%d",&a);    if(a%2==0) ……

2788普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a; scanf("%d",&n); if (n == 1 || n == 3 || n == 5……

可以稍微少打一些代码

摘要:解题思路:注意事项:不要忘记switch语句的花括号参考代码:#include<stdio.h>int main(){    int a;    scanf("%d",&a);    switch(a……

编写题解 2788: 晶晶赴约会,python超简单

摘要:解题思路:用列表注意事项:无参考代码:# 获取用户输入的日期(星期几)day = int(input())# 定义一个列表,包含晶晶的上课日busy_days = [1, 3, 5]# 判断输入的日期……

2788: 晶晶赴约会

摘要://参考代码: #include<iostream> using namespace std; int main() { int a; cin >> a; cout << (a =……

编写题解 2788: 晶晶赴约会

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   int a;   scanf("%d",&a);   if(a==1||a==3||a==5)   prin……

晶晶赴约会 2788

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;    if(a==1||a==3||……