Write a program IN PYTHON to solve the equation s=ut+1/2at^2.
Answers
Find Answr In Attachment.
__________________________
✏ THnks For points
__________________________
Answer:
The answer is Output:- S =79.200
Explanation:
Since s = a t^2 / 2, then t = Sqrt [2 s / a] = Sqrt [2 s / g], where s is the height, and g = 9.8 m/s^2 is the acceleration of gravity.
After that, you can apply v = g t = Sqrt [2 g s].
The code for this specific problem may be easily written in Python, Fortran or C++
#include<stdio.h>
#include<conio.h>
void main()
{
float u,t,a,S;
clrscr();
printf(“enter values u,t,a”);
scanf(“%f %f %f”, &u,&t,&a);
S=(u*t)+(0.5*a*t*t);
printf(“\n S = %f”, S);
}
Input:- enter values u,t,a
U=10,t=4,a=4.9
Output:- S =79.200
Write a program IN PYTHON to solve the equation s=ut+1/2at^2.
https://brainly.in/question/42397390
Python is a excessive-stage, interpreted, preferred-reason programming language. Its layout philosophy emphasizes code readability with the usage of giant indentation.
Python is dynamically-typed and garbage-gathered. It helps multiple programming paradigms, consisting of established (specifically procedural), object-oriented and practical programming. it's miles frequently defined as a "batteries included" language due to its comprehensive fashionable library.
Guido van Rossum commenced running on Python inside the overdue Nineteen Eighties as a successor to the ABC programming language and primary released it in 1991 as Python zero.nine.0. Python 2.zero became launched in 2000 and added new features which include list comprehensions, cycle-detecting rubbish collection, reference counting, and Unicode guide. Python 3.zero, released in 2008, turned into a primary revision that isn't absolutely backward-well suited with in advance variations. Python 2 became discontinued with model 2.7.18 in 2020
Write a program IN PYTHON to solve the equation s=ut+1/2at^2.
https://brainly.in/question/42397390
What is python?????...
https://brainly.in/question/8049240
#SPJ2