西西西西西西西
西西西西西西西
全部文章
分类
题解(114)
归档
标签
去牛客网
登录
/
注册
西西西西西西西的博客
TA的专栏
111篇文章
7人订阅
编程初学者入门训练
111篇文章
2989人学习
全部文章
(共112篇)
题解 | #发布信息#
来自专栏
#include <stdio.h> int main() { printf("I lost my cellphone!\n"); return 0; }
2021-09-02
0
379
题解 | #判断字母#
来自专栏
#include <stdio.h> #include <ctype.h> //方法一: // int main() // { // char ch = 0; // while (~(ch = getchar())) // { // ...
2021-08-27
0
464
题解 | #进制A+B#
来自专栏
#include <stdio.h> int main() { //十六进制和八进制都是整数的不同表示形式 int a = 0; int b = 0; //输入 scanf("%x %o", &a, &b); ...
2021-08-27
0
474
题解 | #计算平均成绩#
来自专栏
# include <stdio.h> int main() { int sum = 0; int score[5] = { 0 }; //数组输入 for (int i = 0; i < 5; i++) { scanf(&...
2021-08-27
1
444
题解 | #输出学生信息#
来自专栏
#include <stdio.h> int main() { printf("Name Age Gender\n"); printf("---------------------\n"); printf(&q...
2021-08-27
0
412
题解 | #KiKi和酸奶#
来自专栏
#include <stdio.h> int main() { int n = 0; //总共n盒酸奶 int h = 0; //喝完一盒酸奶的时间 int m = 0; //经过m分钟 //多组输入 while (~scanf("...
2021-08-27
0
337
题解 | #2的n次方计算#
来自专栏
#include <stdio.h> int main() { int n = 0; //多组输入 while (~scanf("%d", &n)) { printf("%d\n", 1 &...
2021-08-27
0
364
题解 | #大小写转换#
来自专栏
#include <stdio.h> int main() { char ch = 0; //多组输入 - 四种方式 // while (~(ch = getchar())) // { // printf("%c\n"...
2021-08-27
0
396
题解 | #计算球体的体积#
来自专栏
#include <stdio.h> #include <math.h> int main() { double pi = 3.1415926; double r = 0; //输入 scanf("%lf", &r...
2021-08-27
0
388
题解 | #计算三角形的周长和面积#
来自专栏
#include <stdio.h> #include <math.h> int main() { double a = 0; double b = 0; double c = 0; //输入 scanf("%lf %lf ...
2021-08-27
0
534
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页