混混毛毛
混混毛毛
全部文章
分类
归档
标签
去牛客网
登录
/
注册
混混毛毛的博客
全部文章
(共100篇)
题解 | #学生基本信息输入输出#
#include <stdio.h> int main() { long long n; float a,b,c; scanf("%lld;%f,%f,%f",&n,&a,&b,&c); printf("The each subject score of...
2023-01-14
0
182
题解 | #printf的返回值#
#include <stdio.h> int main() { int a; a=printf("Hello world!"); printf("\n"); printf("%d\n",a); return 0; } printf返回的是打印在屏...
2023-01-14
0
228
题解 | #十六进制转十进制#
#include <stdio.h> int main() { printf("%15d",0xABCDEF);//十六进制需要写出前导0x return 0; }
2023-01-14
0
192
题解 | #小飞机#
#include <stdio.h> int main() { int i; for (i=0;i<2;i++) { printf(" **\n"); } for (i=0;i<2;i++) { pri...
2023-01-14
0
195
题解 | #大小写转换#
#include <stdio.h> int main() { char ch; while ((ch=getchar())!=EOF ) { ch=ch+'a'-'A'; printf("%c\n",ch); g...
2023-01-13
0
225
题解 | #反向输出一个四位数#
#include <math.h> #include <stdio.h> int main() { int a; scanf("%d",&a); /*int b,c,d,e; b=a/1000; c=(a%1000)/100; ...
2023-01-13
0
180
题解 | #缩短二进制#
#include <stdio.h> int main() { printf("0%o 0X%X",1234,1234);// printf("%#o %#X",1234,1234); return 0; } 在八进制前显示前导0,在十六进制数前显示前导0X,p...
2023-01-13
0
182
题解 | #有容乃大#
#include <stdio.h> int main() { printf("The size of short is %d bytes.\n",sizeof(short)); printf("The size of int is %d bytes.\n",sizeo...
2023-01-13
0
261
题解 | #我是大V#
#include <stdio.h> int main() { printf(("v v\n v v\n v\n")); return 0; }
2023-01-13
0
217
题解 | #实践出真知#
#include <stdio.h> int main() { printf(("Practice makes perfect!\n")); return 0; }
2023-01-13
0
212
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页