题解 1783: 星期判断机

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

筛选

1783: 星期判断机

摘要:解题思路:注意事项:不要写错单词!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码:#include <bits/stdc++.h>using namespace std;i……

星期判断机(C++switch)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     int n;     cin>>n;    ……

编写题解 1783: 星期判断机

摘要:解题思路:注意事项:单词不要拼错!!!!!!!!!!!!!!!!!!!!参考代码:#include <bits/stdc++.h>using namespace std;int main(){    ……

1783: 星期判断机

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;    switch……

1783: 星期判断机

摘要:解题思路:注意事项:最后是    default:cout<<"input error!"<<endl;break;参考代码:#include <bits/stdc++.h>using namespa……

星期判断机-题解

摘要:参考代码:#include<iostream> using namespace std; int main() { int n; cin >> n; switch(n) { ca……

题解 1783: 星期判断机

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;    switc……

1783: 星期判断机(不用switch)

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a;    cin>>a;if(a==0) ……