일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html youtube
- 토큰경제
- html video
- #bubbleSort
- #3차원배열
- #성적관리프로그램
- #자바상속#자바이즈어#is~a
- html id
- 하이퍼레저패브릭
- #JAVASCRIPT
- #1차원배열
- #CallByAddress
- docker example
- git flow
- #C++ has~a
- html charset
- #다차원포인터
- #binary
- hyperledger transaction
- relative path
- html5 new tag
- html plug-in
- #android activity
- #C++ 연산자함수오버로딩
- mac terminal command
- html multimedia
- border-box
- html code
- html object
- #2차원배열
Archives
- Today
- Total
A sentimental robot
[ ]대신*만을 이용한 2차원배열 본문
#include<stdio.h>
#pragma warning(disable:4996)
void main()
{
char name[3][10] = { 0, };
int score[3][4] = { 0, };
float avr[3] = { 0 };
int i, j = 0;
char scoName[6][10] = { "이름", "국어", "영어","수학","총점","평균" };
for (i = 0; i < 3 ; i++)
{
printf("%s:", scoName);
scanf("%s", name + i);
for (j = 0; j < 3 ; j++) // 국,영,수 점수 입력
{
printf("%s:",scoName+(j+1));
scanf("%d", *(score + i) + j);
*(*(score + i) + 3) += *(*(score + i) + j);
}
*(avr+i) = *(*(score + i) + 3) / 3.f;
}
//전체 출력
for (i = 0; i < 6; i++)
printf("%s\t", *(scoName + i));
printf("\n");
for (i = 0; i < 3; i++)
printf("%s\t%d\t%d\t%d\t%d\t%f\n", *(name + i), *(*(score + i) + 0), *(*(score + i) + 1), *(*(score + i) + 2), *(*(score + i) + 3),*(avr + i));
}
'C ' 카테고리의 다른 글
Call by address (0) | 2017.12.29 |
---|---|
Pointer,2차원배열 (0) | 2017.12.29 |
Pointer (0) | 2017.12.29 |
[ ]대신*를 사용한 1차원 배열 (0) | 2017.12.29 |
2차원배열 (0) | 2017.12.29 |