728x90
반응형
C
#include<stdio.h> typedef struct info{ int height; double weight; }I; main(){ I mom; I dad; I me; scanf("%d%lf",&mom.height,&mom.weight); scanf("%d%lf",&dad.height,&dad.weight); me.height=(mom.height+dad.height)/2+5; me.weight=(mom.weight+dad.weight)/2-4.5; printf("height : %dcm\n",me.height); printf("weight : %.1lfkg",me.weight); } | cs |
출처 : www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=98&sca=10g0
728x90
반응형
'코테 문제 풀이 > 정올' 카테고리의 다른 글
199 : 구조체 - 형성평가5 (0) | 2020.11.11 |
---|---|
197 : 구조체 - 형성평가3 (0) | 2020.11.11 |
196 : 구조체 - 형성평가2 (0) | 2020.11.11 |
618 : 구조체 - 자가진단6 (0) | 2020.11.10 |
617 : 구조체 - 자가진단5 (0) | 2020.11.09 |