题解 3006: 适合晨练

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

筛选

不懂可评论

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main{     public static void main(String[] a……

不懂可评论

摘要:解题思路:注意事项:参考代码:t=int(input()) if 25<=t<=30:     print("ok!") else:     print("no!")……

3006: 适合晨练

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

3006: 适合晨练

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

早晨一起《鸡你太美》

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