Advertisement
aiNayan

Task4

Jul 19th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4.     float a, b;
  5.     printf("Input circle radius value: ");
  6.     scanf("%f", &a);
  7.     printf("Input one side's length of a square: ");
  8.     scanf("%f", &b);
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement