题解 1783: 星期判断机

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

筛选

题解 1783: 星期判断机

摘要:参考代码:#include<stdio.h> int main() {     int n;     scanf("%d",&n);          switch(n){      c……

星期判断机

摘要:解题思路:简单的switch 可以解决注意事项:参考代码:#include<stdio.h>int main(){    int a;    scanf("%d",&a);    switch(a) ……

星期判断机1783

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

指针数组的解

摘要:#include int main(){ char *p[7]={{"Sunday"}, {"Monday"}, {"Tuesday"}, \ {"Wednesday"},……

编写题解 1783: 星期判断机

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    enum week{ Sun=0,Mon,Tues,Wed,Thurs,Fri,Sat} day;   ……

用枚举呀,xdm

摘要:解题思路:用枚举,枚举很方便注意事项:参考代码:#include <stdio.h>int main(){    enum week{ Sun=0,Mon,Tues,Wed,Thurs,Fri,Sat……

星期判断机 (C语言代码)

摘要:解题思路:注意事项:星期六虽然是saturday,但是老师给的例子是satday;参考代码:#include<stdio.h>int main(){    int a;    scanf("%d",&……