일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 charset
- #3차원배열
- #JAVASCRIPT
- border-box
- html object
- html plug-in
- #CallByAddress
- html multimedia
- mac terminal command
- #bubbleSort
- #C++ has~a
- git flow
- #binary
- #다차원포인터
- hyperledger transaction
- #C++ 연산자함수오버로딩
- docker example
- #2차원배열
- #성적관리프로그램
- html youtube
- html video
- html5 new tag
- #자바상속#자바이즈어#is~a
- html id
- relative path
- #android activity
- #1차원배열
- 토큰경제
- html code
Archives
- Today
- Total
목록#strcmp (1)
A sentimental robot
문자열 비교함수
#include #include #pragma warning(disable:4996); void main(){ char name[3][10]; int i, j,r =0; int score[3][4] = { 0, }; float avg[3]; char sName[10]; for (i = 0; i < 3; i++) { printf("name input :"); scanf("%s", name[i]); for (j = 0; j < 3; j++) { printf("score input : "); scanf("%d", &score[i][j]); score[i][3] += score[i][j]; avg[i] = score[i][3] / 3.f; } } for (i = 0; i < 3; i++) { printf("%s..
C
2018. 1. 2. 13:52