fork download
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main() {
  6. int k = 0;
  7. for (int i = 0; i != 5; ++i)
  8. {
  9. std::uint32_t n = 5;
  10. std::cout << n / 2 << "\n";
  11. }
  12. std::cout << "\n";
  13. // your code goes here
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
2
2
2
2
2