我正在制作一个模拟火灾蔓延的森林火灾模型。我们没有以图形方式显示森林,而是指示我们将森林作为纯文本输出到控制台。结果,输出很难区分,所以我决定为不同的元素着色,因此
int i;
int j;
//Initialize a string for what will be outputted to the screen
char output[2000]="";
//Initialize strings that will be concat'd to the main string
char tree[]= "\033[22;31m T \033[22;30m";
char burn[]=" B";
char dirt[]=" D";
char fizzled[]=" F";
char newl[]="\n";
for(i=0;i<25;i++){
for(j=0;j<25;j++){
if(forest[i][j]==1){
strcat(output, tree);
}else if(forest[i][j]==500){
strcat(output,burn);
}else if(forest[i][j]==-1){
strcat(output,fizzled);
}
else{
strcat(output,dirt);
}
}
strcat(output,newl);
}
printf("------------------------------------------\n");
printf("%s",output);
健康的树在第一次迭代中的颜色不同,它们应该如此。但是,它然后返回一个段错误,我不知道为什么会发生。
谢谢