牛客929326746号
牛客929326746号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客929326746号的博客
全部文章
(共6篇)
题解 | #反向输出一个四位数#
#include <stdio.h> int main() { int num = 0; scanf("%d",&num); while(num) { printf("%d...
2024-12-02
0
47
题解 | #有容乃大#
#include <stdio.h> int main() { printf("The size of short is %d bytes.\n",sizeof(short)); printf("The size of int is %...
2024-11-27
0
31
题解 | #小飞机#
#include <stdio.h> int main() { printf(" **\n"); printf(" **\n"); printf("************\n")...
2024-11-27
0
23
题解 | #实践出真知#
#include <stdio.h> int main() { printf("Practice makes perfect!"); return 0; }
2024-11-27
0
30
题解 | #你是天才吗?#
#include <stdio.h> int main() { //定义一个整数表示一个人的智商 int IQ = 0; scanf("%d",&IQ);//输入 if(IQ>=140)//判断 print...
2024-07-28
1
139
题解 | #计算带余除法#
#include <stdio.h> int main() { //定义两个整数ab int a = 0; int b = 0; scanf("%d %d",&a,&b);//输入 int c = a / b;...
2024-07-28
1
145