Last active
November 24, 2022 18:01
-
-
Save terroo/38d426d12be4336c01cad33167e1049a to your computer and use it in GitHub Desktop.
Brasil x Sérvia
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
int main(){ | |
std::uint16_t brasil, servia; | |
float time {0.f}; | |
while( time <= 90.f ){ | |
if( time == 15.f || time == 33.f ){ | |
++brasil; | |
} | |
time += 1.f; | |
} | |
std::cout << "Brasil " << brasil << | |
" vs " << servia << " Sérvia" << '\n'; | |
return EXIT_SUCCESS; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment