Guest User

Untitled

a guest
Nov 23rd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package ejercicio;
  6.  
  7. /**
  8. *
  9. * @author s109e13
  10. */
  11. public class Ejercicio {
  12.  
  13. /**
  14. * @param args the command line arguments
  15. */
  16. public static void main(String[] args) {
  17. Ejercicio obj = new Ejercicio();
  18.  
  19. obj.sumatoria(6);
  20. }
  21.  
  22. public double sumatoria (int n){
  23. return 1.0;
  24. }
  25. }
Add Comment
Please, Sign In to add comment