Advertisement
Vendrick-Xander

HW #3

Nov 25th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. 9. Windows
  2. 10. Smalltalk
  3. 11. .java
  4. 12. .class
  5. 13. javac Hello.Java
  6. 14. java Hello
  7.  
  8. 27. object oriented, has internet related features, and identical syntax to c++ with minor changes
  9. 28. Java Virtual Machine or Just-In-time compilers
  10. 29. read the first number(x)
  11. read the second number(y)
  12. z = x + y
  13. write value of z
  14. 30. x=0
  15. y=0
  16. read the first number
  17. if first number >= 10
  18. first number = x
  19. else
  20. print first number
  21. read second number
  22. if second number >= 10
  23. second number = y
  24. else
  25. print second number
  26. if x > 10 && y > 10
  27. print x + y
  28.  
  29. 34. There are downloads for Java developers that might be useful, there are various blogs/resources, and there are articles discussing java uses. There is a noticeable lack of actual java textbook material to directly teach someone how to program with java.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement