谢彬_
谢彬_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
谢彬_的博客
全部文章
(共54篇)
题解 | #有容乃大#
num_cn = {"short":2,"int":4,"long":8,"long long":8} for k,v in num_cn.items(): print("The size of {} is {} bytes.".format(k,v))
2023-04-26
0
243
题解 | #我是大V#
print("v v") print(" v v") print(" v")
2023-04-24
0
189
题解 | #牛牛的字符菱形#
#include <stdio.h> int main(){ char n; scanf("%c",&n); int i,j; int h=3; for(i=1;i<=h;i++){ for(j=0;j<h-i;j++)...
2023-04-07
0
218
题解 | #牛牛的字符矩形#
#include <stdio.h> int main() { char n; scanf("%c",&n); for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ printf("%c",n); ...
2023-04-06
0
187
题解 | #牛牛的第二个整数#
#include <stdio.h> int main() { int arr[3]={0}; for(int i=0;i<3;i++){ scanf("%d",&arr[i]); } printf("%d",arr[1]); }
2023-04-06
0
220
题解 | #牛牛学说话之-整数#
#include <stdio.h> int main() { int a; while (scanf("%d", &a) != EOF) { // 注意 while 处理多个 case // 64 位输出请用 printf("%lld") to ...
2023-04-06
0
0
题解 | #小乐乐与二段数#
#include <stdio.h> const int maxn=10010; int a[maxn],b[maxn]; int m,total,s,t,aptotal,apm,aps,apt,k; int n; int ck() { ...
2023-04-05
0
276
题解 | #小乐乐与二段数#
#include <stdio.h> const int maxn=10010; int a[maxn],b[maxn]; int m,total,s,t,aptotal,apm,aps,apt,k; int n; int ck() { ...
2023-04-05
1
216
题解 | #KiKi设计类继承#
#include <stdio.h> int ju(int c,int k){return c*k;} float yuan(int a){return a*a*3.14;} int zheng(int a){return a*a;} int main() { int c,k; ...
2023-04-03
0
302
题解 | #小乐乐与字符串#
#include <stdio.h> int main(){ char str[8001]={0}; scanf("%s",str); char *p=str; long long int c=0,ch=0,chn=0; while(*p){ ...
2023-04-03
0
186
首页
上一页
1
2
3
4
5
6
下一页
末页