西西西西西西西
西西西西西西西
全部文章
题解
归档
标签
去牛客网
登录
/
注册
西西西西西西西的博客
全部文章
/ 题解
(共112篇)
题解 | #按照格式输入并交换输出#
来自专栏
#include <stdio.h> //解法一:找中间量交换 // void exchange(int* x, int* y) // { // int tmp = 0; // tmp = *x; // *x = *y; // *y = tmp; // ...
2021-08-27
0
358
题解 | #出生日期输入输出#
来自专栏
#include <stdio.h> int main() { int year = 0; int month = 0; int date = 0; //输入 scanf("%4d%2d%2d", &year, &am...
2021-08-27
0
355
题解 | #ASCII码#
来自专栏
#include <stdio.h> int main() { //输出 //解法一:直接转换 // printf("%c%c%c%c%c%c%c%c%c%c%c%c\n", 73, 32, 99, 97, 110, 32, 100, 1...
2021-08-27
1
479
题解 | #字符金字塔#
来自专栏
#include <stdio.h> int main() { char ch = 0; //输入 scanf ("%c", &ch); //输出 //行 for (int i = 0; i < 5;...
2021-08-27
0
331
题解 | #学生基本信息输入输出#
来自专栏
#include <stdio.h> int main() { int sno = 0; float c = 0.0f; double math = 0.0; double eng = 0.0; //输入 scanf("%d; ...
2021-08-27
3
501
题解 | #成绩输入输出#
来自专栏
#include <stdio.h> int main() { int s1 = 0; int s2 = 0; int s3 = 0; //输入 scanf("%d %d %d", &s1, &s2, &...
2021-08-27
2
465
题解 | #printf的返回值#
来自专栏
#include <stdio.h> int main() { //输出 printf("\n%d\n", printf("Hello world!")); return 0; }
2021-08-27
0
384
题解 | #十六进制转十进制#
来自专栏
# include <stdio.h> int main() { //输出 //"%md"表示printf函数输出域宽为m的十进制整数 printf("%15d\n", 0XABCDEF); // 十六进制前用0x表示...
2021-08-27
2
411
题解 | #缩短二进制#
来自专栏
#include <stdio.h> int main() { //输出 //解法一:自己写前导 //printf("0%o 0X%X", 1234, 1234); //解法二:用前导控制符 printf("%#...
2021-08-27
0
313
题解 | #小飞机#
来自专栏
#include <stdio.h> int main() { //解法一:直接输出 // printf(" **\n"); // printf(" **\n"); // printf("...
2021-08-27
35
1129
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页