diogoAlves

IFF/Introdução à Programação/Slide/Pag 15/Ex 2

Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. //IFF - Introdução à Programação
  2. //Slide página 15 - Exercício 2
  3. #include<stdio.h>
  4. #include<locale.h>
  5. int main(){
  6.     setlocale(LC_ALL, "Portuguese");
  7.     float b, h;
  8.     printf("Entre com a base e a altura do retângulo respectivamente: ");
  9.     scanf("%f %f",&b,&h);
  10.     printf("A área do retângulo é: %.2f", b*h);
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment