想中彩票的加菲猫许愿简历通过
想中彩票的加菲猫许愿简历通过
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
想中彩票的加菲猫许愿简历通过的博客
TA的专栏
1篇文章
0人订阅
校招随便写写
1篇文章
53人学习
全部文章
(共4篇)
题解 | #百钱买百鸡问题#
#include <iostream> using namespace std; int main() { int a,x,y,threez; while (cin >> a) { // 注意 while 处理多个 case for(thre...
2024-08-30
0
53
题解 | #反转链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : &nb...
C++
链表
2022-07-09
0
235
题解 | #今年的第几天?#
#include<bits/stdc++.h> using namespace std; int Isleapyear(int y) //判断是否为闰年 { return ((y%100!=0&&y%4==0...
C++
数学
2022-01-13
0
378
与7无关的数
#include<bits/stdc++.h> using namespace std; int Isabout(int x) { if((x%7==0)||(x%10==7)||(x/10)%10==7) &n...
C++
C
枚举
2022-01-09
5
481