누구나 쉽게 즐기는 c언어 콘서트 개정판 11장 programming
누구나 쉽게 즐기는 c언어 콘서트 개정판 11장 프로그래밍 1번문제 #include struct time { int hour, min, sec; }; int main(void) { struct time starttime = { 0,0,0 }; struct time endtime = { 0,0,0 }; struct time usetime = { 0,0,0 }; printf("시작시간(시, 분, 초): "); scanf("%d %d %d", &starttime.hour, &starttime.min, &starttime.sec); printf("종료시간(시, 분, 초): "); scanf("%d %d %d", &endtime.hour, &endtime.min, &endtime.sec); usetime.hour..
누구나 쉽게 즐기는 c언어 콘서트 개정판 8장 programming
누구나 쉽게 즐기는 c언어 콘서트 개정판 8장 프로그래밍 1번 문제 #include float f(float x, float y) { return 1.5 * x + 3.0 * y; } int main(void) { printf("x = %1.1f, y = %1.1f, f(x,y)=%f\n", 1.0, 1.0, f(1.0, 1.0)); printf("x = %1.1f, y = %1.1f, f(x,y)=%f\n", 2.0, 1.0, f(2.0, 1.0)); printf("x = %1.1f, y = %1.1f, f(x,y)=%f", 1.0, 2.0, f(1.0, 2.0)); return 0; } Colored by Color Scripter cs 2번 문제 #include float get_biigger(fl..
누구나 쉽게 즐기는 c언어 콘서트 개정판 7장 programming
누구나 쉽게 즐기는 c언어 콘서트 개정판 7장 프로그래밍 1번 문제 #include int main(void) { int days[] = { 31,29,31,30,31,30,31,31,30,31,30,31 }; for (int i = 0; i