Advertisement
Schknheit

Untitled

Mar 13th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. #include <stdlib.h>
  4.  
  5. int main(){
  6.    
  7.     float a,b,hip;
  8.    
  9.     printf("Entre com os catetos\n");
  10.     scanf("%f%f",&a,&b);
  11.     hip = sqrt(a*a + b*b);
  12.     printf("%f",hip);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement