fork download
  1.  
  2.  
  3.  
  4.  
  5. /* package whatever; // don't place package name! */
  6.  
  7. import java.util.*;
  8. import java.lang.*;
  9. import java.io.*;
  10.  
  11. // calcular el número de dolares d
  12. // calcular el número de centavos c
  13. // visualizar d y c
  14. // mod(c,100) un tipo de método
  15.  
  16. /* Name of the class has to be "Main" only if the class is public. */
  17. class Ideone
  18. {
  19. public static void main (String[] args) throws java.lang.Exception
  20. {
  21. Scanner lectura = new Scanner (System.in);
  22. System.out.println ("Entra el número de centavos: ");
  23. int c= lectura.nextInt();
  24.  
  25. int d= dolar(c); //c / 100;
  26. int cent= centavo(c); //c % 100;
  27.  
  28. mostrar("Dólares:$", d);
  29. mostrar("Centávos:¢", cent);
  30. }
  31.  
  32. public static int dolar (int c){
  33. return c/100;
  34. } // end método dolar
  35.  
  36. public static int centavo (int c){
  37. return c%100;
  38. } // end método centavo
  39.  
  40. public static void mostrar(String mensaje, double var){
  41. System.out.println(mensaje + var);
  42. } // end método mostrar
  43.  
  44. }
Success #stdin #stdout 0.17s 58748KB
stdin
0
stdout
Entra el número de centavos: 
Dólares:$0.0
Centávos:¢0.0