<求助>while循环条件判断问题:如何输入#退出
#include<stdio.h>#include <windows.h>
#include <stdlib.h>
#define Flush fflush(stdin);
void main()
{
char name[10][20];
int num[10],n=0;
do
{
printf("请输入产品名称\n(输入#号退出):");
Flush;
scanf("%s",&name[n]);
if(name[n][0]=='#') break;//这里已经能退出了
n++;
}while(n<2);<font size=32 color="red">//关键点:输入#号退出</font>
system("pause");
}