{
if (a>b)
return 1;
else if (a==b)
return 0;
else
return -1;
}
答案:比较两个整数a和b的大小,若a>b则返回1,若a= =b则返回0,若a
6.写出下列函数的功能。
static float FH() {
float y=0,n=0;
int x = Convert.ToInt32(Console.ReadLine()); //从键盘读入整型数据赋给x
while (x!=-1) {
n++; y+=x;
x = Convert.ToInt32(Console.ReadLine());
}
if (n==0)
return y;
else
return y/n;
}