fork download
  1. #include <cstdio>
  2.  
  3. /* This is example:
  4.  
  5. #include "robot.h"
  6. using namespace Robot
  7.  
  8. */
  9.  
  10. using namespace std;
  11.  
  12. int main(){
  13.  
  14. while (1){
  15.  
  16. int position;
  17. position = //Ex: return_position_robot();
  18. while (position > 0){
  19. //Ex: move_robot(2); //Would move the robot on the screen
  20. position = //Ex: return_position_robot();
  21. }
  22. }
  23. return 0;
  24. }
  25.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty