题解列表

筛选

2779: 输出绝对值

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

2779: 输出绝对值

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

2787: 有一门课不及格的学生

摘要:解题思路:注意事项:有一门课几个另一门课一定不及格参考代码:#include <iostream>using namespace std;int main(){    int x,y;    cin ……

2784: 收集瓶盖赢大奖

摘要:解题思路:注意事项:||是或者参考代码:#include <iostream>using namespace std;int main(){    int x,y;    cin >> x >>y ;……

2782: 整数大小比较

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

题解 1783: 星期判断机

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

3006: 适合晨练

摘要:解题思路:注意事项:25<=t<=30应为(25<=t && t<=30)参考代码:#include <iostream>using namespace std;int main(){    int ……