Advertisement
aiNayan

Task9

Aug 17th, 2020
117
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. int main()
  3. {
  4.    float a;
  5.    printf("Inpur a value: ");
  6.    scanf("%f", &a);
  7.    if (a >=7)
  8.    printf("The value is %.3f", a/10);
  9.    else
  10.    printf("Not possible");
  11.    return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement