C Program To Find Values Of S, Where S = ut + 1/2 * at^2

C Program To Find Values Of S, Where S = ut + 1/2 * at^2

Code
//  Find the value of S where s = ut + 1 / 2at^2

#include <stdio.h>
int main()
{
    float s, u, t, a;
    printf("Enter The Values Of u,t,a: ");
    scanf("%f%f%f", &u, &t, &a);
    printf("Value Of S Is: %.2f", (u * t) + (a * t * t * 0.5));
    return 0;
}
Output
Enter The Values Of u,t,a: 4 6 8
Value Of S Is: 168.00

Post a Comment