Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.   int nota = 0;
  5.   do{
  6.     printf("digite nota:");
  7.     scanf("%i", &nota);
  8.     printf("Nota recebida!  \n");
  9.   }while(nota<4);
  10.  
  11.   printf("PROGRAMA FINALIZADO");
  12.  
  13.   return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement