Advertisement
Guest User

LA WEA FUNCIONAL

a guest
Oct 9th, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5.  
  6. {
  7. int nota, leg;
  8.  
  9. printf ("Ingrese nota del alumno: ");
  10. scanf ("%d", &nota);
  11.  
  12. if (nota>6)
  13. printf ("La nota es mayor a 6\n");
  14.  
  15. else
  16.  
  17. printf ("La nota es menor a 6\n");
  18.  
  19.  
  20. system("PAUSE");
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement