Advertisement
d3dx939dll

Aula10 - For

Dec 14th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.38 KB | None | 0 0
  1. /*
  2. Autor: @d3dx939dll
  3. Data: 15/12/2020
  4. Aula De Hoje: For
  5. Grupo: Heikoa
  6. */
  7. #include <stdio.h>
  8.  
  9. int main()
  10. {
  11.     int cont;
  12.     int numero = 1;
  13.  
  14.     for(cont = 1; cont <= 10; cont = cont +1){
  15.  
  16.     printf("D3DX3939dll is back! %i\n", cont);
  17.     }
  18.     return 0;
  19. }
  20. /*
  21. Operadores Logicos:
  22.  
  23. > - Maior
  24. < - Menor
  25. >= - Maior ou igual
  26. <= - Menor ou Igual
  27. == - Igualdade
  28. != - Diferente
  29.  
  30. */
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement