Alafun
Alafun
全部文章
分类
小小的脑袋,大大的困惑(3)
就是玩儿(1)
题解(1)
归档
标签
去牛客网
登录
/
注册
阿拉凡的小世界
加油
全部文章
(共5篇)
题解 | #金字塔# 方法:找规律-->列公式-->用循环表示出来
如图 至于这个错误好像是因为缓存区的问题 这是为什么呀,为什么能ac但是样例过不了
2022-02-10
0
421
题解 | #3和5# 没太理解,这一题还要多花时间
c++ java python #include<stdio.h> bool contFive(int i){ for(int res=i;res>0;res/=10){ if (res%10==5) return true; /...
2022-02-09
0
289
题解 (划掉) 求助QAQ | #牛牛学数列6#
为什么这个可以过 我懵了,求走过路过大佬看看是哪里逻辑通了 我 k<n 改成 k<=n反而不对 #include<stdio.h> int main(){ int n; scanf("%d",&n); int count; for(i...
C
2022-01-22
0
366
万恶之源 打表法
#include <stdio.h> int main() { long long a[1000]; int n; scanf("%d",&n); a[1]=1; a[2]=1; a[3]=2; a[4]=3; a[5]=5; a[6]=8; a[7]=13; a[8]=21; ...
2021-11-15
0
499
题解 | #乘法表# 求问这一题纯C代码怎么写
套娃发帖 发帖数超过限制是什么鬼 原讨论贴 这一题,这样 #include<stdio.h> #include<string.h> int main() { char ch[10000000]; gets(ch); puts(ch); r...
C
2021-11-14
1
331