Advertisement
andre373

Codigos em C (Faculdade)

Mar 16th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.54 KB | None | 0 0
  1. # include <stdio.h>
  2. # include <stdlib.h>
  3. # include <stdbool.h>
  4.  
  5. int main(){
  6.     int numero, quadr;    
  7.     while (true){
  8.           printf("\nDigite um numero para ver o dobro ou  (O) para sair: ");
  9.           scanf("%d",&numero);
  10.           if (numero != 0){
  11.                      quadr = numero * numero;
  12.                      printf("O quadrado de %d é = %d",numero, quadr);
  13.                      
  14.           } else {
  15.                  printf("\nSaindo\n");
  16.                  break;
  17.           }
  18.     }
  19.     system("pause");
  20.     return 0;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement