int num = Integer.Parse(Console.ReadKey());
if(num<0 && num>10)
Console.WriteLine("输入值要大于0且小于10");
else
{
int count = num;
while(count>0)
{
下列运算:是什么??
count--;
}
}
基本就是这样,徒手随便敲了下,但是不知道你说的下列运算是什么
看不到运算表达式啊
你的问题看不懂