분류 전체보기(603)
-
조건문 - 조건문 수행평가 문제2(4개중 큰 숫자 출력)
#include int main() {int a, b, c, d;scanf("%d %d %d %d", &a, &b, &c, &d);if ((a >= b) &&(a > c) && (a > d)) printf("%d", a);else if ((b >= a) && (b > d) && (b > c)) printf("%d", b);else if ((c >= a) && (c > b) && (c > d)) printf("%d", c);else printf("%d", d);return 0;}
2018.07.08 -
조건문 - 조건문 수행평가 문제1(계절 출력)
#include int main() {int a;scanf("%d", &a);if ((a >= 3) && a = 6) && (a = 9) && (a < 12)) printf("가을!");else if ((a = 13)) printf("잘못 입력했습니다.");else printf("겨울!");return 0;}
2018.07.08 -
조건문 - 조건문의 활용 예제8(윤년 여부 계산)
#include int main (int n){scanf("%d", &n);printf(n % (n % 25 ? 4 : 16) ? "%d년은 윤년이 아닙니다." : "%d년은 윤년입니다.", n);}
2018.07.08 -
조건문 - 조건문의 활용 예제7(0점수에 따른 등급 출력)
#include int main() {int score;scanf("%d", &score);switch (score / 10) {case 10: printf("S"); break;case 9: printf("A"); break;case 8: printf("B"); break;case 7: printf("C"); break;case 6: printf("D"); break;case 5: printf("E"); break;default : printf("F"); break;}return 0;}
2018.07.08 -
조건문 - 조건문의 활용 예제6(학과 출력하기)
#include int main() {int a;scanf("%d", &a);a = a%1000;if (a >= 700) printf("디미고 학생이 아닙니다.");else if(a >= 500) printf("hd");else if( a >= 300) printf("wp");else if( a>= 200) printf("dc");else if( a>= 100)printf("eb");else printf("디미고 학생이 아닙니다.");}
2018.07.08 -
조건문 - 조건문의 활용 예제5(교복 사이즈 계산)
#include int main() {double a;scanf("%lf", &a);if ((150
2018.07.08