cmd常用语法
2022-01-02 17:52:29 314KB cmd常用语法
1
可以禁用security center提示,防火墙,一键有效
2022-01-01 16:08:12 237B security center 防火墙
1
使用dos命令行远程复制文件到windows服务器,不需要使用windows远程桌面工具就可以批量进行文件复制,给应用程序同时发布到多台不同的服务器提供一个解决思路
2021-12-31 10:09:34 800B dos cmd bat xcopy
1
c语言Turbo C下写的俄罗斯方块源码控制台版本CMD实现,拿来学习研究很不错
2021-12-30 22:02:28 10KB c语言TurboC下写的俄罗斯
这是一个控制台程序,需要用命令提示符打开. (1)首先在开始菜单中打开“运行”命令,然后找到命令udp.exe (2)用同样的方法在另一台主机上运行udp.exe命令。
2021-12-30 22:02:28 14KB c语言UDP传输系统源码控制台版
游戏玩法:当任意按下键时,游戏启动,敌人随机移动,自己开始躲避敌人和墙壁,尽可能多的吃豆豆
// 输出屏幕提示 cleardevice(); setcolor(YELLOW); setfont(64, 0, "黑体"); outtextxy(160, 50, "打字母游戏"); setcolor(WHITE); setfont(16, 0, "宋体"); outtextxy(100, 200, "就是很传统的那个掉字母然后按相应键就消失的游戏"); outtextxy(100, 240, "只是做了一个简单的实现"); outtextxy(100, 280, "功能并不很完善,比如生命数、分数等都没有写"); outtextxy(100, 320, "感兴趣的自己加进去吧"); // 实现闪烁的“按任意键继续”
c语言打字游戏代码源码控制台版本CMD实现,拿来学习研究很不错
c语言地空对战游戏源码控制台版本CMD实现,拿来学习研究很不错
void DetectHDD() /*测试当前磁盘驱动器*/ { struct dfree diskfree; /*定义结构体变量*/ struct fatinfo fatinfo; puts("The information of the current disk is :\n"); /*送一字符串到流中,用于显示程序功能*/ getdfree(0,&diskfree); /*获取当前磁盘驱动器信息*/ getfat(0,&fatinfo); /*获取文件分配表信息*/ puts("----------------- hard disk space ------------------"); /*送一字符串到流中,用于对即将显示的*/ /*内容进行说明*/ printf(">>The num of avaible clusters is : %d\n",diskfree.df_avail); /*输出可使用的簇数*/ printf(">>The num of all clusters is : %d\n",diskfree.df_total); /*输出磁盘驱动器的簇数*/ printf(">>The num of bytes of every sector is : %d\n",diskfree.df_bsec); /*输出每个扇区的字节数字节数*/ printf(">>The num of sectors of every cluster is : %d\n",diskfree.df_sclus); /*输出每个簇的扇区数*/ puts("----------- file allocation table -------------"); /*送一字符串到流中,用于对即将显示的*/ printf(">>The num of sectors of every cluster is : %d\n",fatinfo.fi_sclus); /*输出每个簇扇区数*/ printf(">>The num of bytes of file allocation table is : %d\n",fatinfo.fi_fatid); /*文件分配表字节数*/ printf(">>The num of clusters is : %d\n",fatinfo.fi_nclus); /*簇的数目*/ printf(">>The num of ytes of every sector is : %d\n",fatinfo.fi_bysec); /*每个扇区字节数*/ }