This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
wesvirus
/
edaBit-coding-challenges
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
94f3018cec
Branches
Tags
master
edaBit-codin...
/
Convert-Hours-into-Seconds
/
code.cpp
code.cpp
58 B
Historique
Raw
1
2
3
int howManySeconds(int hours) {
return hours * 60 * 60;
}