구조체를 이용한 성적관리 프로그램 소스 해석 좀 부탁드립니다.
콩알녀
#includestdio.h
#includestdlib.h
#includestring.h
typedef struct Student{ // 학생 구조체 정의
int id; // 학 번
char name[40]; // 이름
int Comp, Eng, Math; // 컴프 영어 미적분학
int sum; // 합계
float Avg; // 평균 //구조체 멤버
char Credit[9]; // a+,a,b+,b,c+,c,d+,d,f
}
Student;
int main(void){
int choice;
int select;
Student *profile[100];
int i, j;
int count = 0;
char choicename[20];
int choiceid;
int insert;
int rank = 1;
while(1){
printf( 성적 관리 프로그램\n);
printf(1. 입 력\n);
printf(2. 출 력\n);
printf(3. 수 정 밎 삭 제\n);
printf(4. 검 색\n);
printf(5. 프 로 그 램 종 료\n);
printf( );
scanf(%d, &choice);
switch(choice){
case 1:{
profile[count] =(Student*)malloc(sizeof(Student));
printf(학번을 입력하세요 : );
scanf(%d, &profile[count]-id);
printf(이름을 입력하세요 : );
scanf(%s, &profile[count]-name);
fflush(stdin);
printf(컴프 성적을 입력하세요 : );
scanf(%d, &profile[count]-Comp);
printf(영어 성적을 입력하세요 : );
scanf(%d, &profile[count]-Eng);
printf(미적분학 성적을 입력하세요 : );
scanf(%d, &profile[count]-Math);
profile[count]-sum = profile[count]-Comp + profile[count]-Eng + profile[count]-Math;
profile[count]-Avg = (float)profile[count]-sum / 3.0;
if(profile[count]-Avg = 95) strcpy(profile[count]-Credit, A+);
else if(profile[count]-Avg = 90) strcpy(profile[count]-Credit, A);
else if(profile[count]-Avg = 85) strcpy(profile[count]-Credit, B+);
else if(profile[count]-Avg = 80) strcpy(profile[count]-Credit, B);
else if(profile[count]-Avg = 75) strcpy(profile[count]-Credit, C+);
else if(profile[count]-Avg = 70) strcpy(profile[count]-Credit, C);
else if(profile[count]-Avg = 65) strcpy(profile[count]-Credit, D+);
else if(profile[count]-Avg = 60) strcpy(profile[count]-Credit, D);
else strcpy(profile[count]-Credit, F);
count++;
break;
}
case 2:{
if(count == 0){
printf(출력할 값이 없습니다.);
break;
}
else{
printf(번호\t|학번\t|이름\t|컴프\t|영어\t|미적분학\t|합계\t|평균\t|학점\t|석차\t\n);
for(i=0;icount;i++){
rank = 1;
if(profile[i]-id == -1) continue;
else{
printf(%d\t|%d\t|%s\t|%d\t|%d\t|%d\t|%d\t|%.2f\t|%s\t|, i+1, profile[i]-id, profile[i]-name, profile[i]-Comp, profile[i]-Eng, profile[i]-Math, profile[i]-sum, profile[i]-Avg, profile[i]-Credit);
for(j=0;jcount;j++){
if(profile[j]-id == -1) continue;
if(profile[i]-sum profile[j] -sum){
rank++;
}
}
printf(%d\n, rank);
}
}
break;
}
}
case 3:{
printf(수정 할 경우에는 1을 삭제할 경우에는 2를 입력하세요 : );
scanf(%d,&insert);
if(insert == 1){
printf(수정할 학번을 입력하세요 : );
scanf(%d, &insert);
for(i=0;icount;i++){
if(profile[i]-id == insert){
printf(컴프 성적을 입력하세요 : );
scanf(%d, &profile[i]-Comp);
printf(영어 성적을 입력하세요 : );
scanf(%d, &profile[i]-Eng);
printf(미적분학 성적을 입력하세요 : );
scanf(%d, &profile[i]-Math);
profile[i]-sum = profile[i]-Comp + profile[i]-Eng + profile[i]-Math;
profile[i]-Avg = (float)profile[i]-sum / 3.0;
if(profile[i]-Avg = 95) strcpy(profile[i]-Credit, A+);
else if(profile[i]-Avg = 90) strcpy(profile[i]-Credit, A);
else if(profile[i]-Avg = 85) strcpy(profile[i]-Credit, B+);
else if(profile[i]-Avg = 80) strcpy(profile[i]-Credit, B);
else if(profile[i]-Avg = 75) strcpy(profile[i]-Credit, C+);
else if(profile[i]-Avg = 70) strcpy(profile[i]-Credit, C);
else if(profile[i]-Avg = 65) strcpy(profile[i]-Credit, D+);
else if(profile[i]-Avg = 60) strcpy(profile[i]-Credit, D);
else strcpy(profile[i]-Credit, F);
break;
}
}
if(i == count)
printf(%d 학번은 없습니다. 다시 입력하세요 \n, insert);
}
else if(insert == 2){
printf(삭제할 학번을 입력하세요 : );
scanf(%d, &insert);
for(i=0 for(i=0;icount;i++){
if(profile[i]-id == insert){
profile[i]-id = -1;
break;
}
}
}
else
printf(다시 입력하세요);
break;
}
case 4:{
while(1){
printf(이름으로 검색 하실거면 1을 학번으로 검색 하실 경우에는 2를 입력 하세요 : );
scanf(%d, &select);
if(select == 1){
printf(이름을 입력 하세요 : );
scanf(%s, &choicename);
fflush(stdin);
for(i=0;icount;i++){
if((strcmp(profile[i]-name, choicename)) == 0){
printf(학번\t|이름\t|컴프\t|영어\t|미적분학\t|합계\t|평균\t|학점\n);
printf(%d\t|%s\t|%d\t|%d\t|%d\t|%d\t|%.2f\t|%s\t\n, profile[i]-id, profile[i]-name, profile[i]-Comp, profile[i]-Eng, profile[i]-Math, profile[i]-sum, profile[i]-Avg, profile[i]-Credit);
break;
}
}
if(i == count)
printf(찾으시는 %s 님의 성적은 없습니다. , choicename);
break;
}
else if(select == 2){
printf(학번을 입력 하세요 : );
scanf(%d, &choiceid);
for(i=0;icount;i++){
if(profile[i]-id == choiceid){
printf(학번\t|이름\t|컴프\t|영어\t|미적분학\t|합계\t|평균\t|학점\n);
printf(%d\t|%s\t|%d\t|%d\t|%d\t|%d\t|%.2f\t|%s\t\n, profile[i]-id, profile[i]-name, profile[i]-Comp, profile[i]-Eng, profile[i]-Math, profile[i]-sum, profile[i]-Avg, profile[i]-Credit);
break;
}
}
if(i == count)
printf(찾으시는 %d학번의 성적은 없습니다. , choiceid);
break;
}
else
printf(잘못 입력 하셨습니다. 다시 입력 하세요\n);
}
}
break;
case 5:
exit(1);
}
printf(\n\n\n);
}
return 0;
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |