How to 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.
Related:
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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"); | |
} | |
} |
Thank you very much for that article
ReplyDelete