Recent Posts
Recent Comments
- Today
- Total
목록비주얼 스튜디오 (1)
SA_BLOG
중간,기말 점수로 총점, 평균, 석차 구하는 예제 소스입니다. 123456789101112131415161718192021222324252627282930313233343536373839404142 /* 성적처리 예제 프로그램 OS : Windows 7 S/W: Visual Studio 2013 Express */ #include int main(void) { int num[5][5] = { { 74, 65 }, { 50, 80 }, { 88, 98 }, { 82, 75 }, { 78, 60 } }; char name[5][10] = { "강감찬", "김시민", "장보고", "이순신", "김유신" }; int i, j; //총점&평균 for (i = 0; i
프로그래밍/C언어
2013. 11. 26. 22:58