Contest3315 - 周日上午 搜索
2024-10-27 10:00:00
3333-10-27 14:00:00
信息与公告
#include<bits/stdc++.h> #include<windows.h>// oj.ipachong.com 主页最下面 #include<graphics.h> // 图形库 只有小熊猫才有的库 using namespace std; void xiaqi(int x,int y,int who){// who=1 玩家A who=-1 玩家B if(who==1) setcolor(WHITE),setfillcolor(WHITE); else setcolor(BLACK),setfillcolor(BLACK); fillcircle(x,y,20); } int who=1; int main(){ //创建窗口 (大小) initgraph(700,700); setcaption("五子棋"); setbkcolor(YELLOWGREEN);//背景 for(int i=50;i<=650;i+=50){ line(50, i,650, i); line(i, 50, i, 650); } for(;is_run();delay_fps(60)){ while(mousemsg()){// msg message 消息 mouse_msg msg=getmouse();//获取消息 if(msg.is_down()&&msg.is_left()){ cout<<msg.x<<" "<<msg.y<<endl; xiaqi(msg.x,msg.y,who); who*=-1; } } } getch();//相当于输入 return 0; }