일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #JAVASCRIPT
- #2차원배열
- 토큰경제
- html video
- html multimedia
- html charset
- #다차원포인터
- html5 new tag
- 하이퍼레저패브릭
- #성적관리프로그램
- border-box
- #CallByAddress
- html object
- html plug-in
- html id
- html code
- #C++ has~a
- #3차원배열
- #android activity
- html youtube
- relative path
- #1차원배열
- #자바상속#자바이즈어#is~a
- hyperledger transaction
- git flow
- docker example
- #C++ 연산자함수오버로딩
- mac terminal command
- #bubbleSort
- #binary
Archives
- Today
- Total
A sentimental robot
1차원배열 본문
#include<stdio.h>
#pragma warning(disable : 4996)
void main() {
int score[3];
int sum;
float avg;
char name[10];
printf("name input : ");
scanf("%s", &name[0]);
printf("Korean :");
rewind(stdin);
scanf("%d", &score[0]);
printf("English :");
scanf("%d", &score[1]);
printf("Math :");
scanf("%d", &score[2]);
sum = score[0] + score[1] + score[2];
avg = sum / 3.f;
printf("name:%s\nsum:%d\naverage:%f\n", name, sum, avg);
}
'C ' 카테고리의 다른 글
Pointer (0) | 2017.12.29 |
---|---|
[ ]대신*를 사용한 1차원 배열 (0) | 2017.12.29 |
2차원배열 (0) | 2017.12.29 |
함수를 활용한 사칙연산 (0) | 2017.12.29 |
for문을 활용한 구구단 (0) | 2017.12.29 |