帮我编程序呀,用C语言哦

2025-05-26 05:02:28
推荐回答(1个)
回答1:

#define N 4
main()
{int i,j;
for(i=0;i<=7;i++)
for(j=0;j<=6;j++)
{if(j==i::j==6-i)
printf ("*");
}
}