修改了PrintState函数中的部分代码风格

This commit is contained in:
Yerolling 2022-05-24 21:22:57 +08:00
parent 9e6faf16bf
commit d96c174703

View File

@ -151,11 +151,11 @@ void PrintState(char *str)
{
memset(str, 0, 150);
int count, flag=1; //flag用于标记为使下面第一个循环能够进入
int count, flag = 1; //flag用于标记为使下面第一个循环能够进入
rail_node_t *p = NULL;
char target[25], clockwise[25], counterclockwise[25];
for (count = 0, p = rails; flag==1 || p != rails; p = p->next_node, count++)
for (count = 0, p = rails; flag == 1 || p != rails; p = p->next_node, count++)
{
flag=0;
target[count] = '0';