Advertisement
tomateblue

Multiplicação em C

Jun 14th, 2016
86
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=3;
  6.   int n2=4;
  7.   int total;
  8.   total = n1 * n2; // Multiplicação
  9.   printf(“Multiplicacao: %i”,total);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement