饥饿的大魔王
饥饿的大魔王
全部文章
分类
归档
标签
去牛客网
登录
/
注册
饥饿的大魔王的博客
全部文章
(共31篇)
题解 | #翻转金字塔图案#
#include <stdio.h> /* * * * * * * * * * * * * * * * */ int main() { int i = 0; int n = 0; int j = 0; int tmp ...
2023-04-22
1
251
题解 | #变种水仙花#
#include <stdio.h> /* 描述 变种水仙花数 - Lily Number:把任意的数字,从中间拆分成两个数字, 比如1461 可以拆分成(1和461),(14和61),(146和1), 如果所有拆分后的乘积之和等于自身,则是一个Lily Number。 例如: 65...
2023-04-12
1
268
题解 | #水仙花数#
#include <stdio.h> /* 数学上有个水仙花数,有几个三位数 他的各位数字的 ‘立方’ 和等于其本身 153 = 1的3次方+5的3次方+3的3次方 想一下该如何去实现 需要什么去实现 思路一定要清晰 我这里用的是多重循环,看到题目一定要去分析题目 不要光去看 弄一...
2023-04-11
1
269
题解 | #牛牛的计划#
#include <stdio.h> /* 计划在y年m月d日开始学习,但之前肯定不会学习, 一旦开始学习 就不会停下来 请判断 y m d 应该学习吗 */ int main() { int y,m,d,y1,m2,d2; scanf("%d%d%d"...
2023-04-01
1
344
题解 | #网购#
#include <stdio.h> /* 在一家店铺看重了一件衣服,他了解到,如果今天是双11 (11月11日) 11打7折 12打8折 优惠卷额外减 50 元 优惠卷只能在 11 或 12 使用 求 kiki最终花的钱 输入描述 ...
2023-03-30
1
282
题解 | #统计数据正负个数#
#include <stdio.h> int main() { int i = 0;//循环几次 int p = 0;//正数++ int n = 0;//负数++ int arr[10] = {0};//创建数组 元素个数为10个 //循环10...
2023-03-30
1
259
题解 | 利用循环完成#小乐乐排电梯#
#include <stdio.h> /* 分析:>如何去实现,怎么去实现 */ int main() { int n = 0; int count = 0; scanf("%d",&n); while(n > 12) { ...
2023-03-26
1
295
题解 | #实现四舍五入#
#include <stdio.h> int main() { double d = 0; scanf("%lf",&d); if(d >= 0 ) { int a = d + 0.5;//假如我14.4 + 0.5 = 14.9...
2023-03-21
1
280
题解 | #牛牛的字符菱形#
#include <stdio.h> //先想清解题思路,先手去打想一下 是怎么形成的 //想一下每行需要几个空格,去打印几个,怎么去实现 //想一下每一行有多少个符号,怎么去实现 //我的思路也是一步一步想出来的 //一步一步去实践 /* # ### ##### ### ...
2023-03-21
2
260
题解 | #牛牛的第二个整数#
#include <stdio.h> //第二种解法 int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",b); return 0; } /*//第一种解法 int main() { ...
2023-03-21
1
242
首页
上一页
1
2
3
4
下一页
末页