大家好日子, 我目前正在通过youtube学习C,而且我对数组知之甚少。我是否可以使用数组来指定模式中的位置。例如在20x20box中我可以要求用户说出他想要放置他的名牌或品牌名称的位置吗?我也想知道我是否可以为盾牌制作图案,并知道用户想要使用琴弦和圈子放置他的徽章。
#include <stdio.h>
#include <string.h>
int main()
{
int i,j, choice;
int Num=20;
/*
char brand[20][20]={{"BrandName"}};
printf("where should the brandname be placed?")
scanf("%d", &choice);
if(choice==1)//prints it on the left for example?*/
for(i=0;i<Num;i++)
{
for(j=0;j<Num;j++)
{
if(i==0||i==Num-1)
{
printf("*");
}
else if(j==0||j==Num-1)
{
printf("*");
}
else
{
printf(" ");
}
}
printf("\n");
}
return 0;
}