数日子标题太短标题太短 摘要:#include<stdio.h> int main() { printf("200"); return 0; }解题思路:注意事项:参考代码:…… 题解列表 2024年04月04日 0 点赞 0 评论 239 浏览 评分:9.9
我趣,这题直接输出也对 摘要:解题思路:无注意事项:无参考代码:#include <stdio.h>int main(){int date; date=200; printf("%d\n",date); retu…… 题解列表 2023年12月28日 0 点赞 0 评论 232 浏览 评分:9.9
1864: 数日子 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年10月08日 0 点赞 0 评论 86 浏览 评分:0.0
关于输出答案能过在件事(流汗) 摘要:#啊这这个题有点。。。注意事项:注意审题不知道为什么这样出题参考代码:print(200)…… 题解列表 2023年09月06日 0 点赞 1 评论 115 浏览 评分:9.9
1864——————数日子 摘要: n = [31,28,31,30,31,30,19] #已知2018年1月至7月每月的天数 sum = 0 #初始化为0 for i in n: su…… 题解列表 2022年07月08日 0 点赞 0 评论 168 浏览 评分:0.0
1864: 数日子 摘要:解题思路:比输入版判断日子简单,只需要初始化year、month、day,直接计算total注意事项:闰年&&月份>2 才+1参考代码:#include <stdio.h> int main() {…… 题解列表 2021年03月05日 0 点赞 0 评论 195 浏览 评分:0.0
数日子-题解(C++代码) 摘要:解题思路:本题为C++循环结构的课后习题,这里我提供了一种用循环实现的方法。注意事项:参考代码:#include <iostream>using namespace std;/* run this p…… 题解列表 2021年02月13日 0 点赞 0 评论 462 浏览 评分:9.9
数日子-题解(Java代码)输入日期 摘要:解题思路:注意事项:参考代码:Scanner sc = new Scanner(System.in); String year = sc.next(); String month = sc.nex…… 题解列表 2021年01月25日 0 点赞 0 评论 265 浏览 评分:0.0
数日子-题解(C语言代码)题目煞笔 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int m[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; …… 题解列表 2020年08月17日 0 点赞 0 评论 349 浏览 评分:0.0
数日子-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n=719; int day=0; //判断2018是否…… 题解列表 2020年03月28日 0 点赞 0 评论 379 浏览 评分:0.0