Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public void HolaMundo(){
  2. System.out.println("Hola mundo");
  3. }
  4.  
  5. HolaMundo();
  6.  
  7. public void Imprimir(String algo){
  8. System.out.println(algo);
  9. }
  10.  
  11. Imprimir("Hola mundo");
  12.  
  13. public String Mayusculas(String minúsculas){
  14. return minúsculas.toUpperCase();
  15. }
  16.  
  17. System.out.println(Mayusculas("hola mundo"));
  18.  
  19. String mayusculas=Mayusculas("hola mundo);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement