Advertisement
OtakuVideo

Untitled

Feb 22nd, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. CLS
  2.  
  3. LET New_Car_Count = 0
  4. LET Used_Car_Count = 0
  5.  
  6.  
  7.  
  8.  
  9.  
  10. DO WHILE
  11.  
  12.  
  13. LOOP
  14.  
  15.  
  16. PRINT
  17. PRINT "New cars: ", New_Car_Count
  18. PRINT "Used cars: ", Used_Car_Count
  19.  
  20.  
  21. DATA Mercedes,50000,new
  22. DATA Ford,23000,new
  23. DATA Honda,15000,used
  24. DATA Kia,5000,used
  25. DATA Subaru,10000,used
  26. DATA Hyundai,21000,new
  27. DATA Jeep,28000,new
  28. DATA Mazerati,100000,new
  29. DATA EOD,0,0
  30.  
  31. END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement