Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int n1=8;
- int n2=4;
- int total;
- total = n1 / n2; // Divisão
- printf(“Divisao: %i”,total);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement