1872: 春夏秋冬季节判断 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; cin>>n; …… 题解列表 2023年10月15日 0 点赞 0 评论 81 浏览 评分:0.0
无虑,无悔,无题。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m; scanf("%d",&m); switch (m){ case 1 : case 2 :prin…… 题解列表 2024年11月21日 0 点赞 0 评论 117 浏览 评分:0.0
Java语言编写的 摘要:解题思路:注意事项:参考代码:import java.awt.*;import java.nio.charset.StandardCharsets;import java.util.Scanner;p…… 题解列表 2022年03月09日 0 点赞 0 评论 176 浏览 评分:0.0
1872: 春夏秋冬季节判断 摘要:解题思路:春、夏、秋%3=1、2、3,冬%3=0、4,用default代表注意事项:参考代码:#include<stdio.h> int main(){ int num; scanf("%d…… 题解列表 2021年03月04日 0 点赞 0 评论 313 浏览 评分:0.0
1872:春夏秋冬判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int month; while(scanf("%d",&month)!=EOF) { if(month>=…… 题解列表 2022年10月29日 0 点赞 0 评论 154 浏览 评分:0.0
1872 yydscyuayn cyuyanC语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int m; scanf("%d",&m); switch(m) …… 题解列表 2021年11月04日 0 点赞 0 评论 273 浏览 评分:0.0
春夏秋冬季节判断(switch-case) 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); switch(n) { ca…… 题解列表 2023年10月30日 0 点赞 0 评论 113 浏览 评分:0.0
春夏秋冬季节判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); switch (a){ case 1: ca…… 题解列表 2021年11月07日 0 点赞 0 评论 301 浏览 评分:2.0
1872: 春夏秋冬季节判断 摘要:解题思路:注意事项:参考代码:n = int(input())if 3<= n <6: print('Spring')elif 6<=n < 10: print('…… 题解列表 2022年01月04日 0 点赞 0 评论 217 浏览 评分:2.0