algorithm(153)
-
연산자 - 연산자의 활용 예제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 -
119 : 디버깅 - 형성평가4
119 : 디버깅 - 형성평가4제한시간: 1000 ms 메모리제한: 0 MB 해결횟수: 2577 회 시도횟수: 11422 회 Special Judge 다음의 프로그램을 작성하여 같은 방법으로 ① ② ③ 위치에서 디버깅 창에 표시된 a의 값을 각각 입력하시오. (PC의 시간이 맞는지 확인하세요. 시간이 다르면 결과가 틀릴 수 있습니다.) ① ② ③ 의 값만 출력 ''' python 의 경우 ''' import time now = time.localtime() a = 0 a = now.tm_year-1900 # p a += now.tm_mon-1 # q a += now.tm_mday print 1, 2, 3 # r # p, q, r 에서의 a값들을 1, 2, 3를 대신하여 작성한다. /* java의 경우 *..
2018.02.28