Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include<stdio.h>
  2. int main()
  3.  
  4. {
  5.     float nota=0;
  6.  
  7.     printf("introduzca nota: ");
  8.  
  9.     scanf("%f",&nota);
  10.  
  11.         if (nota>=61)
  12.  
  13.         printf("\nAPROBADO");
  14.  
  15.         else
  16.  
  17.         printf("\nREPROBADO");
  18.  
  19.         return 0;
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement