The total distance travelled by vehicle in 't' seconds is given by distance = ut+1/2at^2 where 'u' and 'a' are the initial velocity (m/sec.) and acceleration (m/sec2).

Write C program to find the distance travelled at regular intervals of time given the values 'u' and 'a'.

The program should provide the flexibility to the user to select his own time intervals and repeat the calculations for different values of 'u' and 'a'.

Added 2 years ago
Active
Viewed 1017
Ans
#include<stdio.h> 
main()
{
    int a,u,t,t1,t2,i; 
    float s;
    clrscr();
    printf("ENTER THE VALUES OF a,u,t,t1,t2:");
    scanf("%d%d%d%d%d",&a,&u,&t,&t1,&t2);
    for(i=t1;i<=t2;i=i+t) 
    {
        s=(u*i)+(0.5*a*i*i); 
        printf("\n\nthe distance travelled in %d seconds is %f ",i,s);
    }
    getch();
}



Related Questions