| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 7250 人关注过本帖, 4 人收藏
标题:俄罗斯方块,用C语言写的,在VC6.0和VS201上调试通过
只看楼主 加入收藏
闲出屁
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:7
帖 子:420
专家分:612
注 册:2012-1-24
收藏
得分:0 
以下是引用vv0bb在2012-2-15 22:33:15的发言:

int main()
 {
     FILE *fp=fopen("c:\\123s\\a.c","w");
     srand((unsigned long)time(0));
     system("mode con cols=56 lines=30");
     system("color 24");
     int score=0;
     //FILE *
     fp=fopen("C:\\els.txt","r");
     if(fp==NULL)
     {
         fp=fopen("C:\\els.txt","w");
         fprintf (fp,"%d",score);
         fclose(fp);
     }
 这一段是干嘛的,看懂的告诉我下
应该是记录最高分 写有问题 fopen成功后一定要fclose 要不会造成数据丢失 这个习惯很重要

乔布斯是神 宫崎骏也是神~~ 才知道 原来士兵突击的主题曲是久石让的 久石让的音乐 真传神
2012-02-15 22:36
vv0bb
Rank: 1
等 级:新手上路
帖 子:11
专家分:1
注 册:2012-2-15
收藏
得分:0 
回复 10楼 萧晴
哪错了,晕
2012-02-15 22:38
vv0bb
Rank: 1
等 级:新手上路
帖 子:11
专家分:1
注 册:2012-2-15
收藏
得分:0 
回复 11楼 闲出屁
谢谢
2012-02-15 22:39
萧晴
Rank: 1
等 级:新手上路
帖 子:18
专家分:5
注 册:2012-1-19
收藏
得分:0 
回复 11楼 闲出屁
不知道,编译了一下,系统报出了一个错误
2012-02-15 22:39
vv0bb
Rank: 1
等 级:新手上路
帖 子:11
专家分:1
注 册:2012-2-15
收藏
得分:0 
回复 9楼 我菜119
谢谢,我c语言没考
2012-02-15 22:40
我菜119
Rank: 10Rank: 10Rank: 10
等 级:青峰侠
帖 子:938
专家分:1756
注 册:2009-10-17
收藏
得分:0 
回复 11楼 闲出屁
你没发现他这段代码简直太烂了吗?打开文件后不关闭,只关闭了最后打开的那个!

愿用余生致力编程
2012-02-15 22:43
萧晴
Rank: 1
等 级:新手上路
帖 子:18
专家分:5
注 册:2012-1-19
收藏
得分:0 
--------------------Configuration: 俄罗斯方块 - Win32 Debug--------------------
Compiling...
俄罗斯方块.c
F:\俄罗斯方块.c(24) : error C2061: syntax error : identifier 'bool'
F:\俄罗斯方块.c(25) : error C2059: syntax error : '}'
F:\俄罗斯方块.c(71) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(73) : error C2065: 'i' : undeclared identifier
F:\俄罗斯方块.c(90) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(91) : error C2275: 'FILE' : illegal use of this type as an expression
        c:\program files\microsoft visual studio\vc98\include\stdio.h(156) : see declaration of 'FILE'
F:\俄罗斯方块.c(91) : error C2065: 'fp' : undeclared identifier
F:\俄罗斯方块.c(92) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(92) : warning C4024: 'fscanf' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(92) : error C2065: 't' : undeclared identifier
F:\俄罗斯方块.c(93) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(93) : warning C4024: 'fclose' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(116) : error C2065: 'j' : undeclared identifier
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : warning C4552: '>=' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(123) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'for'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(124) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(125) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(131) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'for'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(132) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(133) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(134) : error C2065: 'board' : undeclared identifier
F:\俄罗斯方块.c(134) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(134) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(134) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(150) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(151) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(157) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(157) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(157) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(172) : error C2065: 'bool' : undeclared identifier
F:\俄罗斯方块.c(172) : error C2146: syntax error : missing ';' before identifier 'mark'
F:\俄罗斯方块.c(172) : error C2065: 'mark' : undeclared identifier
F:\俄罗斯方块.c(175) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(175) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(175) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(178) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(178) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(178) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : warning C4552: '>' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(184) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(185) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(189) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(189) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(189) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(191) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(191) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(191) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(191) : error C2198: 'color' : too few actual parameters
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(194) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(194) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(194) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(195) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(195) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(195) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(202) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(202) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(202) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(203) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(203) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(203) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(222) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(223) : error C2275: 'FILE' : illegal use of this type as an expression
        c:\program files\microsoft visual studio\vc98\include\stdio.h(156) : see declaration of 'FILE'
F:\俄罗斯方块.c(224) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(224) : warning C4024: 'fscanf' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(225) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(225) : warning C4024: 'fclose' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(228) : warning C4047: '=' : 'int ' differs in levels of indirection from 'struct _iobuf *'
F:\俄罗斯方块.c(229) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(229) : warning C4024: 'fprintf' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(230) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(230) : warning C4024: 'fclose' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(235) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(235) : warning C4024: 'fclose' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(280) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(280) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(280) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(295) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(330) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(330) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(330) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(330) : fatal error C1003: error count exceeds 100; stopping compilation
执行 cl.exe 时出错.

俄罗斯方块.obj - 1 error(s), 0 warning(s)
就是这样
2012-02-15 22:44
闲出屁
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:7
帖 子:420
专家分:612
注 册:2012-1-24
收藏
得分:0 
以下是引用我菜119在2012-2-15 22:43:17的发言:

你没发现他这段代码简直太烂了吗?打开文件后不关闭,只关闭了最后打开的那个!
应该是对这块不熟悉 但是其他地方还有不少可取的地方
我还是比较喜欢整体的设计 没什么高深的地方 但是简洁也挺美观

乔布斯是神 宫崎骏也是神~~ 才知道 原来士兵突击的主题曲是久石让的 久石让的音乐 真传神
2012-02-15 22:46
闲出屁
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:7
帖 子:420
专家分:612
注 册:2012-1-24
收藏
得分:0 
以下是引用萧晴在2012-2-15 22:44:20的发言:

--------------------Configuration: 俄罗斯方块 - Win32 Debug--------------------
Compiling...
俄罗斯方块.c
F:\俄罗斯方块.c(24) : error C2061: syntax error : identifier 'bool'
F:\俄罗斯方块.c(25) : error C2059: syntax error : '}'
F:\俄罗斯方块.c(71) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(73) : error C2065: 'i' : undeclared identifier
F:\俄罗斯方块.c(90) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(91) : error C2275: 'FILE' : illegal use of this type as an expression
        c:\program files\microsoft visual studio\vc98\include\stdio.h(156) : see declaration of 'FILE'
F:\俄罗斯方块.c(91) : error C2065: 'fp' : undeclared identifier
F:\俄罗斯方块.c(92) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(92) : warning C4024: 'fscanf' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(92) : error C2065: 't' : undeclared identifier
F:\俄罗斯方块.c(93) : warning C4047: 'function' : 'struct _iobuf *' differs in levels of indirection from 'int '
F:\俄罗斯方块.c(93) : warning C4024: 'fclose' : different types for formal and actual parameter 1
F:\俄罗斯方块.c(116) : error C2065: 'j' : undeclared identifier
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(123) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(123) : warning C4552: '>=' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(123) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'for'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(124) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(124) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(124) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(125) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(131) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(131) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(131) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'for'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(132) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(132) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(132) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(133) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(134) : error C2065: 'board' : undeclared identifier
F:\俄罗斯方块.c(134) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(134) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(134) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(150) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(150) : warning C4552: '<' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(150) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(151) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(157) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(157) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(157) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(172) : error C2065: 'bool' : undeclared identifier
F:\俄罗斯方块.c(172) : error C2146: syntax error : missing ';' before identifier 'mark'
F:\俄罗斯方块.c(172) : error C2065: 'mark' : undeclared identifier
F:\俄罗斯方块.c(175) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(175) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(175) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(178) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(178) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(178) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ')' before 'type'
F:\俄罗斯方块.c(184) : error C2143: syntax error : missing ';' before 'type'
F:\俄罗斯方块.c(184) : warning C4552: '>' : operator has no effect; expected operator with side-effect
F:\俄罗斯方块.c(184) : error C2059: syntax error : ')'
F:\俄罗斯方块.c(185) : error C2143: syntax error : missing ';' before '{'
F:\俄罗斯方块.c(189) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(189) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(189) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(191) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(191) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(191) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(191) : error C2198: 'color' : too few actual parameters
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(193) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(194) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(194) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(194) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(195) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(195) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(195) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(201) : error C2224: left of '.color' must have struct/union type
F:\俄罗斯方块.c(202) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(202) : error C2109: subscript requires array or pointer type
F:\俄罗斯方块.c(202) : error C2224: left of '.having' must have struct/union type
F:\俄罗斯方块.c(203) : error C2109: subscript requires array or pointer type
F:\俄罗斯 ...
把.c改为.cpp试试

乔布斯是神 宫崎骏也是神~~ 才知道 原来士兵突击的主题曲是久石让的 久石让的音乐 真传神
2012-02-15 22:47
vv0bb
Rank: 1
等 级:新手上路
帖 子:11
专家分:1
注 册:2012-2-15
收藏
得分:0 
回复 16楼 我菜119
不关闭什么后果
2012-02-15 22:51
快速回复:俄罗斯方块,用C语言写的,在VC6.0和VS201上调试通过
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.021645 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved