Advertisement
Guest User

aula de programação em c #1

a guest
Sep 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(){
  5.     int a;
  6.  
  7.     scanf("%d", &a);
  8.  
  9.     printf("%d", a+10);
  10.  
  11.  
  12.     return 0;
  13. }
  14. /**
  15. %d - digitos(int)
  16. %f - ponto flutuante(float)
  17. %c - caracter(char)
  18. %lf - ponto flutuante dupla precisão(double)
  19.  
  20. **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement