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...
/
Area-of-a-Triangle
/
code.cpp
code.cpp
62 B
Historie
Surový
1
2
3
int triArea(int base, int height) {
return (base*height)/2;
}