How to Calculate Kinetic Energy in C

Calculate Kinetic Energy in C
How this Program Work?

Before starting we will be using a library of math.h, for mathematic operations.

First, we'll take input the values of mass and velocity and store the input in the variables.

Then, we will apply a condition, because mass can't be negative.

After that, we'll apply the formula to calculate kinetic energy.

Calculate Kinetic Energy in C


#include<stdio.h>
#include<math.h>
void main()
{
//declaration of variable
float m, v, ke;
//getting the value of mass
printf("Enter the Value Of mass");
scanf("%f",&m);
//getting the value of velocity
printf("Enter the Value Of Velocity");
scanf("%f",&v);
if(m>0) //applying condition since mass can't be negative
{
// formula to calculate Kinetic Energy
ke = ((0.5)* m * pow(v,2.0));
printf("With the mass %f and velocity %f, the value of Kinetic Energy is %f J", m, v, ke);
}
else
{
printf("Mass can't be negative");
}
}
view raw kineticenergy.c hosted with ❤ by GitHub
Related:

Comments

Post a Comment

Popular posts from this blog

Pseudocode to Check, Number is Odd or Even

How to Create Marksheet in C

C Program to Calculate Acceleration