K

@kimjuha19

운동장 트랙 바퀴 수 계산

C
1 month ago
#include <stdio.h> typedef struct { double totalDist; double trackLen; int result; } Student; int main() {

우리 반 수학 점수 최고점 찾기

C
1 month ago
#include <stdio.h> typedef struct { int score[3]; int max; } Student; int main() { Student std = {88,95,72,98};

유튜브 영상 조회수 합산

C
1 month ago
#include <stdio.h> typedef struct { int views[3]; int result; } Youtube; int main() { Youtube std = {1200,3450,890};

태블릿 PC 할인율 적용

C
1 month ago
#include <stdio.h> typedef struct { int originalPrice; float discountRate; int result; } Shopping; int main() {

카페 단체 주문 정산

C
1 month ago
#include <stdio.h> typedef struct { char name[20]; int drinkPrice; int orderCount; int result; } Cafe; int main() {

스마트폰 사용 시간 변환

C
1 month ago
#include <stdio.h> typedef struct { int totalMinutes; int hour; int min; } ScreenTime; int main() {

수행평가 감점 정산

C
1 month ago
#include <stdio.h> typedef struct { int perfectScore; float penalty; float result; } Performance; int main() {

무기 강화 재료 남은 개수

C
1 month ago
#include <stdio.h> typedef struct { int totalStone; int reqStone; int max; int remnant; } Upgrade; int main() {

마법사의 마나 충전 포션

C
1 month ago
#include <stdio.h> typedef struct { int currentMana; int potionMana; int result; } Wizard; int main() {

편의점 1+1 행사 계산기

C
1 month ago
#include <stdio.h> typedef struct { int price; int count; char name[20]; } Convenience; int main() {

구조체 기초

C
1 month ago
#include <stdio.h> typedef struct{ int grade; char name[20]; } Student; int main() { Student std[4] = {{1, "손흥민"},{2,"김민재"},{3,"이강인"},{4,"오현규"}};

주식 가격 하락장 찾기

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){

파일 시스템 '위로 가기'

C
1 month ago
#include <stdio.h> #include <string.h> char stack[100][100]; int top = -1; void push(char* x) { strcpy(stack[++top], x); }

스마트 자동 세척 스택

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){

오름차순 수열 만들기

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){

짝수만 살아남는 스택

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){

중복 문자 제거기

C
1 month ago
#include <stdio.h> #include <string.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; }

문자열 뒤집기 마법

C
1 month ago
#include <stdio.h> #include <string.h> char stack[100]; int top = -1; void push(char x){ stack[++top] = x; }

내 앞의 거인 찾기

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){

사탕 상자 정리

C
1 month ago
#include <stdio.h> int stack[100]; int top = -1; void push(int x){ stack[++top] = x; } void pop(){