Advertisement
lucontre

jijiji

May 10th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. stand(time(null))
  2.  
  3.  
  4.  
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. int par(int); //declaro prototipo de funcion
  10. int sumaTodo(int);
  11. int sumaImpar(int);
  12. int sumaPar(int);
  13.  
  14. int main()
  15. {
  16. int numEstudiantes=0;
  17. do{
  18. printf("ingrese numero de estudiantes\n");
  19. scanf("%i",&numEstudiantes);}
  20. while(numEstudiantes<1);
  21.  
  22.  
  23. return 0;
  24. }
  25.  
  26. int par(){
  27.  
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement