#include<stdio.h>
#include <time.h>
#define MAX 3

struct student
{

 double avg;
 int number;
 char name[7];
 char comgu;
 char ja;
 char winple;

}list;

int main()
{
 struct student list; 
 char ch;
 int sum=0;
 int i,j;


 for(i=0;i<MAX;i++)
 {

  printf("이름을 입력하시오");
  scanf("%s",list.name); 
  printf("학년을 입력하시오");
  scanf("%d",&list.number);

  printf("컴구성적");
  scanf_s("%c",&list.comgu);
  printf("\n");
  printf("자료구조 성적");
  scanf_s("%c",&list.ja);
  printf("\n");
  printf("윈플성적");
  scanf_s("%c",&list.winple);
 }
}

 

여기까지 실행하면  scanf가 다 잘 나와야 되자나요??? 근대 컴구나 자료구조 한개가 값이 입력이 안됩니다 미치겟어요; 도와주십쇼 ㅠ