Guest User

Untitled

a guest
Oct 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. // idade deve sempre ser positiva, por isso vou usar unsigned
  2. unsigned int t1;
  3. printf("Digite sua idade:");
  4. scanf("%d", &t1);
  5. printf("Idade: %d", t1);
Add Comment
Please, Sign In to add comment