fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. int i=0;
  7.  
  8. while (i<12)
  9. {
  10. cout << "*" << " ";
  11. i+=3;
  12. }
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5328KB
stdin
Standard input is empty
stdout
* * * *