C语言游戏源代码【精选】.doc

  1. 1、本文档共37页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语言游戏源代码【精选】.doc

大学课件 大学教育 C语言游戏源代码 简单的开机密码程序 #include conio.h #include string.h #include stdio.h void error() {window(12,10,68,10); textbackground(15); textcolor(132); clrscr(); cprintf(file or system error! you cant enter the system!!!); while(1); /*若有错误不能通过程序*/ } void look() {FILE *fauto,*fbak; char *pass=c:\\windows\\password.exe; /*本程序的位置*/ char a[25],ch; char *au=autoexec.bat,*bname=hecfback.^^^; /*bname 是autoexec.bat 的备份*/ setdisk(2); /*set currently disk c:*/ chdir(\\); /*set currently directory \*/ fauto=fopen(au,r+); if (fauto==NULL) {fauto=fopen(au,w+); if (fauto==NULL) error();} fread(a,23,1,fauto); /*读取autoexec.bat前23各字符*/ a[23]=\0; if (strcmp(a,pass)==0) /*若读取的和pass指针一样就关闭文件,不然就添加*/ fclose(fauto); else {fbak=fopen(bname,w+); if (fbak==NULL) error(); fwrite(pass,23,1,fbak); fputc(\n,fbak); rewind(fauto); while(!feof(fauto)) {ch=fgetc(fauto); fputc(ch,fbak);} rewind(fauto); rewind(fbak); while(!feof(fbak)) {ch=fgetc(fbak); fputc(ch,fauto);} fclose(fauto); fclose(fbak); remove(bname); /*del bname file*/ } } void pass() {char *password char input[60]; int n; while(1) {window(1,1,80,25); textbackground(0); textcolor(15); clrscr(); n=0; window(20,12,60,12); textbackground(1); textcolor(15); clrscr(); cprintf(password:); while(1) {input[n]=getch(); if (n58) {putchar(7); break;} /*若字符多于58个字符就结束本次输入*/ if (input[n]==13) break; if (input[n]=32 input[n]=122) /*若字符是数字或字母才算数*/ {putchar(*); n++;} if (input[n]==8) /*删除键*/ if (n0) {cprintf(\b \b); input[n]=\0; n--;} } input[n]=\0; if (strcmp(password,input)==0) break; else {putchar(7); window(30,14,50,14); textbackground(15); textcolor(132); clrscr(); cprintf(password error!); getch();} } } main() {look(); pass(); } 彩色贪吃蛇 #include graphics.h #include stdlib.h #define N 200 #define up 0x4800 #define down 0x5000 #define left 0x4b00 #define right 0x4d00 #define esc 0x011b #define Y 0x1579 #define n 0x316e int gamespeed; /* 游戏速度 */ int i, key, color; int score = 0; /* 游戏分数 */ char cai48H[] = { ??? 0x00, 0x00, 0x00, 0x00, 0x00, 0

文档评论(0)

liuxiaoyu92 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档