想吃火锅的猪猪是我的神
想吃火锅的猪猪是我的神
全部文章
题解
归档
标签
去牛客网
登录
/
注册
想吃火锅的猪猪是我的神的博客
一名自学无术的菜鸡的自学之路
全部文章
/ 题解
(共13篇)
题解 | #表示数字# #入门解法#
#include<stdio.h> #define N 100 #include<stdbool.h> #include<string.h> bool judgenum(char c){ //判断是否是数字 if(c>='0'&&...
C
2022-03-15
1
300
题解 | #输出单向链表中倒数第k个结点#
#include<stdio.h> struct ListNode { int key; struct ListNode *next; }; void returnback(struct ListNode *head,int k){ struct ListNod...
C
2022-03-13
2
448
题解 | #求最小公倍数#
1.先求出二者最大公约数 2.二者乘积除以最大公约数就是最小公倍数 #include<stdio.h> int main(){ int commonmax=1; int a,b; scanf("%d %d",&a,&b); for(int ...
C
2022-03-09
17
402
首页
上一页
1
2
下一页
末页