Notice
Recent Posts
Recent Comments
Link
bdfgdfg
2530번,2588번 본문
반응형
#include <iostream>
using namespace std;
int main()
{
int hour, minute, second,timeSecond;
cin >> hour >> minute >> second;
cin >> timeSecond;
while (true)
{
if (timeSecond < 3600)
break;
timeSecond -= 3600;
hour += 1;
if (hour == 24)
hour = 0;
}
while (true)
{
if (timeSecond < 60)
break;
timeSecond -= 60;
minute += 1;
if (minute == 60)
{
hour += 1;
if (hour == 24)
hour = 0;
minute = 0;
}
}
second += timeSecond;
if (second >= 60)
{
minute += 1;
second = 0 + (second - 60);
if (minute == 60)
{
hour += 1;
if (hour == 24)
hour = 0;
minute = 0;
}
}
cout << hour << " " << minute << " " << second;
}
2530번
#include <iostream>
using namespace std;
int main()
{
int num1, num2;
cin >> num1;
cin >> num2;
int a, b, c, tmp = num2;
c = tmp % 10;
tmp /= 10;
b = tmp % 10;
tmp /= 10;
a = tmp % 10;
cout << num1 * c << endl << num1 * b << endl << num1 * a << endl << num1 * num2;
}
2588번
반응형
'코딩테스트 > 백준' 카테고리의 다른 글
[실버 4] 1010번 다리 놓기 (0) | 2022.01.07 |
---|---|
5543번(상근날드), 5575(타임카드) (0) | 2021.12.19 |
2480번, 2525번 (0) | 2021.09.17 |
3046번,5564번,8393번 (0) | 2021.09.12 |
2845번, 2914번, 3003번 (0) | 2021.09.09 |
Comments