1 Star 1 Fork 2

劉亜崇/C和C++游戏趣味编程

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
2-5-2.cpp 491 Bytes
Copy Edit Raw Blame History
劉亜崇 authored 2022-04-04 10:40 +08:00 . 初始化
#include <graphics.h>
#include <conio.h>
#include <stdio.h>
int main()
{
int y = 100;
int step = 100;
initgraph(600, 600);
cleardevice();
fillcircle(300, y, 20);
Sleep(1000);
y = y+step;
cleardevice();
fillcircle(300, y, 20);
Sleep(1000);
y = y+step;
cleardevice();
fillcircle(300, y, 20);
Sleep(1000);
y = y+step;
cleardevice();
fillcircle(300, y, 20);
Sleep(1000);
y = y+step;
cleardevice();
fillcircle(300, y, 20);
Sleep(1000);
_getch();
closegraph();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/liuyachong/Interesting-programming-of-C-and-Cpp-Games.git
git@gitee.com:liuyachong/Interesting-programming-of-C-and-Cpp-Games.git
liuyachong
Interesting-programming-of-C-and-Cpp-Games
C和C++游戏趣味编程
main

Search