自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 简单三子棋的实现

#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include<stdlib.h> #include<math.h> #include<time.h> #include<Windows.h> #define ROW 3 #define COL 3 char g_board[RO...

2018-12-17 20:18:23 153

原创 猜数字游戏及其他练习

1.(数字范围为1~100) #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include<stdlib.h> #include<math.h> #include<time.h> #include<Windows.h> int Menu() { printf("====...

2018-12-17 20:14:29 205

原创 找最大值 求公约数 数组数值互换

1.求十个整数中的最大值 int arr[10]; int i,max; printf("输入10个数字:"); for (i = 0 ; i < 10; i++) { scanf("%d", &arr[i]); //使输入的数字为数组中对应的元素 max = arr[9]; //定义数组中的第一个元素为最大值,也可任意定义某个元素为最大 } ...

2018-12-04 22:26:18 108

原创 乘法表 打印素数 判断闰年

1.九九乘法表 int b = 1; while (b <= 9) { int a = 1; while (a <= 9&&a <= b) { pri

2018-12-01 20:32:22 129

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除