@messiwergunov
0 / 0 / 0
Регистрация: 13.12.2012
Сообщений: 15
|
|
|
06.05.2013, 09:55. Просмотров 235. Ответов 0
C++ | 1
2
3
4
5
6
7
8
9
10
11
| class Time
{
int h,m,s;
public:
Time(int H, int M, int S);
{
if(H < 24 && M < 60 && S < 60)
h = H, m = M, s = S;
else
h = m = s = 0; |
|
0
|