This website works better with JavaScript
Domů
Procházet
Nápověda
Registrovat se
Přihlásit se
wesvirus
/
edaBit-coding-challenges
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
94f3018cec
Větve
Značky
master
edaBit-codin...
/
Convert-Hours-into-Seconds
/
code.cpp
code.cpp
58 B
Historie
Surový
1
2
3
int howManySeconds(int hours) {
return hours * 60 * 60;
}