牛客832149165号
牛客832149165号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客832149165号的博客
全部文章
(共5篇)
题解 | 大数乘法
#include <iostream> #include<vector> #include<string> #include<algorithm> using namespace std; int main() { string s,t; ...
2025-03-14
0
24
题解 | #日期累加#
#include <iostream> using namespace std; int GetMonthDay(int year,int month) { int MonthDay[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; ...
2024-05-04
0
94
题解 | #打印日期#
#include <iostream> using namespace std; int GetMonthDay(int year,int month) { int MonthDay[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; ...
2024-05-04
0
117
题解 | #计算日期到天数转换#
#include <iostream> using namespace std; int GetMonthDay(int year,int month) { int MonthDay[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; ...
2024-05-03
0
117
题解 | #两个整数二进制位不同个数#
#include <stdio.h>int main() { int a, b; int count = 0; while (scanf("%d %d", &a, &b) != EOF) { for (i...
2023-11-06
0
188