有关循环结构while的用法,求破
10个人,求在60~85分的总人数我的程序是这样的,可是输不出人数,想问到底少了什么,如何才能让程序成功运行结果????
#include<stdio.h>
#define count 10
void main()
{
int score;
int n,sum;
printf("请输入10个学生的成绩:");
scanf("%d",&score);
if((score>=0&&score<60)||(score>85&&score<=100))
n==0;
else
n==1;
while(score>=60&&score<=85)
{
sum+=n;
}
printf("成绩在60~85分之间的学生总人数:%d\n",sum);
}