题解 1246: 第几天

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

筛选

编写题解 1246: 第几天

摘要:解题思路:注意事项:参考代码:def isy(st):     if st%100==0:         if st%400==0:             return 1    &

第几天 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>struct Data{ int year; int month; int day;};int ComputerDays(struct……

1246库函数解法(Python)

摘要:解题思路:注意事项:太晚了,先睡了,想起来了再写吧参考代码:from datetime import datetimeimport sysfor line in sys.stdin:    line ……

第几天(Java代码)

摘要:解题思路:  数组计数注意事项:  注意区分闰年的情况参考代码: import java.util.Scanner; /**  * 2021年2月16日  下午8:32:46  * @au……

第几天-题解(C++代码)

摘要:结构体可以储存天数数组 注意闰年的二月天数 ```cpp #include #include using namespace std; struct data { int ……

第几天 (Java代码)

摘要:解题思路: import java.util.Scanner; public class C1246 { public static void main(String[] args) { ……

输入年月日,输出这是今年的第几天

摘要:解题思路:1,多组数据输入,用一个while循环。2.定义一个数组,把一年每个月的天数放进去。3,再使用个while循环实现天数的累加。4,输出注意事项:定义的i=0,所以小于月份建议,不然就会多加一……

第几天 (C++代码)

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

第几天 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int n……