开发平台(Platform): (Ex: Win10, Linux, ...)
Win10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
GCC Code Blocks
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
想知道为什么不断重复printf出档案内的内容,
换行却无法正确显示
喂入的资料(Input):
自己绘制的字符地图文字档
####################
#00000000###########
#00000000###########
#00000000###########
#00000000###########
#00000000###########
#00000000###########
#00000000###########
#000000p*###########
####################
####################
####################
####################
####################
####################
####################
####################
####################
####################
####################
预期的正确结果(Expected Output):
因为使用无穷循环,应该在每次打印后,等待1秒后清除萤幕,再次打印同样的地图,
也就是1秒刷新一次。
错误结果(Wrong Output):
结果跑出奇怪的排版方式:
#####################00000000############00000000############......
类似这样
程式码(Code):(请善用置底文网页, 记得排版)
#include <stdio.h>
#include <stdlib.h>
#define _mazeLW 20 /*地图长宽*/
int i,j=0;
char mazeunit[i][j]={0}; /*地图元素纪录阵列*/
FILE *readfile;
void maze(int key)
{
switch(key)
{
case 1:
{
readfile = fopen("maze1.txt","r"); /*不同地图开不同档案*/
}break;
case 2:
{
readfile = fopen("maze2.txt","r");
}break;
case 3:
{
readfile = fopen("maze3.txt","r");
}break;
}
if(readfile != NULL)
{
for(i=0;i<_mazeLW;i++)
{
fscanf(readfile,"%s",mazeunit[i]); /*读取地图元素入mazeunit阵列
} */
fclose(readfile);
while(1)
{
system("cls");
for(i=0;i<_mazeLW;i++)
{
/*这边我想要让它每一秒刷新一
printf("%s\n",mazeunit[i]); 次地图,不过执行后地图却变乱
七八糟(没有换行)*/
} /*这个无穷循环没有设中断点,
因为想先测试地图的部分,请先
忽略*/
sleep(1);
}
}
else
{
printf("地图档遗失或不存在!请重新确认地图档案是否存在。");
}
putchar('\n');
system("pause");
}
int main()
{
maze(1);
return 0;
}
补充说明(Supplement):
请各位帮小弟看看问题出在哪里QQ
我的想法是,
printf的运作方式不是我想的那么简单,会不会不小心把换行吃掉了?
orz
================================================================
程式码网址:
http://codepad.org/kV1JUhS0
================================================================