분류 전체보기(603)
-
연산자 - 연산자의 활용 예제6
Practice ContentsK양은 톱으로 X * Y 사이즈의 나무 판자를 자르려고 한다. 톱으로 직선을 자르는 행위를 1번이라고 했을 때, K양이 X*Y 사이즈의 나무 판자를 1*1 사이즈 인 X*Y개로 만들기 위해서는 최소 몇 번의 톱질을 해야 하는지 구하는 프로그램을 작성하시오. (입력으로 X와 Y의 사이즈를 정수 형태로 받고, 출력으로 최소 톱질 횟수를 출력한다.)Input / Output Examples⋇ Please keep the input/output format well.#include int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a*b-1); return 0; }
2018.07.05 -
연산자 - 연산자의 활용 예제5
Practice Contents운동에너지(E)는 물체의 질량과 속력에 따라 달라진다. E = 1/2 * m(질량) * v(속력) 제곱 물체의 질량과 속력이 주어졌을 때, 운동에너지를 계산하여 소수점 2자리까지 나타내는 프로그램을 작성하시오. (질량과 속력은 모두 정수로 입력받는다.)Input / Output Examples⋇ Please keep the input/output format well. #include int main() { int a, b; scanf("%d %d",&a, &b); printf("%.2lf", 0.5*a*b*b); return 0; }
2018.07.05 -
연산자 - 연산자의 활용 예제4
Practice Contents0000년.00월.00일 형태도 날짜를 입력받아 0000년 00월 00일로 출력하는 프로그램을 작성하시오. Input / Output Examples⋇ Please keep the input/output format well.
2018.07.05 -
연산자 - 연산자의 활용 예제3
Practice Contents현재 1달러 환율은 1071원이다. 즉, 1달러 = 1071원 K군이 가지고 있는 원 단위의 돈의 액수를 입력하면 몇 달러 몇센트인지 출력하는 프로그램을 작성하시오. (1달러 = 100센트) Input / Output Examples⋇ Please keep the input/output format well. #include int main() { int a; scanf("%d",&a); printf("%d달러 %d센트",a/1071,a*100/1071%100); }
2018.07.05 -
연산자 - 연산자의 활용 예제2
Practice Contents입력받은 두 자리 정수의 10의 자리 숫자와 1의 자리 숫자를 출력하는 프로그램을 작성하시오. Input / Output Examples⋇ Please keep the input/output format well. #include int main() { int a; scanf("%d", &a); printf("십의자리 : %d\n", a/10); printf("일의자리 : %d", a%10); return 0; }
2018.07.05 -
연산자 - 연산자의 활용 예제1
Practice Contents태어난 연도를 입력받아 나이를 출력하는 프로그램을 작성하시오. Input / Output Examples⋇ Please keep the input/output format well. #include int main() { int year, age; scanf("%d", &year); printf("%d", 2019-year); return 0; }
2018.07.05