ks颜熙
ks颜熙
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ks颜熙的博客
全部文章
(共4篇)
题解 | #日期累加#C++
#include <iostream> #include<iomanip> using namespace std; int GetMonthDay(int y, int m) { int month[] = { 0, 31, 28, 31, 30, 31, 30,...
2024-01-22
0
207
题解 | #打印日期#C++
#include <iostream> #include<iomanip> using namespace std; int GetMonthDay(int y, int m) { int month[] = { 0, 31, 28, 31, 30, 31, 30,...
2024-01-22
0
277
题解 | #日期差值#C++写一个日期类
#include <iostream> using namespace std; int GetMonthDay(int y, int m) { int month[] = { 0, 31, 28, 31, 30, 31, 30, 31,31, 30, 31, 30, 31 }...
2024-01-22
6
320
题解 | #三角形判断#
#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> int main() { int a = 0; int b = 0; int c = 0; while (scanf("%d %d %d", &a, &b, &c) != ...
2023-02-16
0
270