Advertisement
tomateblue

Divisão em C

Jun 14th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.   int n1=8;
  6.   int n2=4;
  7.   int total;
  8.   total = n1 / n2; // Divisão
  9.   printf(“Divisao: %i”,total);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement