闫树杰

海阔天空 鸟语花香

study together


Download the theme

做一个东西,首先要理清思路,做出原型
1.打印棋盘
2.可以下棋
3.下棋规则明确
4.输赢

定义数组全局/动态数组
清屏 cls stdlib.h
windows.h 移动光标

https://blog.csdn.net/konghouy/article/details/80230571

更早的文章

#include <stdio.h> int numConvert(int,int,int) ; int main(){intnumber , m , n ;scanf("%d%d%d",&number,&n,&m);printf("%d\n",numConvert(number,n,m));return 0 ;}int numConvert(int a,int b,int c){int x=0,i=1,y=1;while(a){x+=a%10*i;a/...…

继续阅读