initial commit

This commit is contained in:
toĉjo 2022-03-24 12:37:43 -03:00
commit 758a147dad
2 changed files with 66 additions and 0 deletions

32
gravity.c Normal file
View File

@ -0,0 +1,32 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[]) {
/* intro */
printf("\nWarning: In order for this calculator to work properly, you must use kg for mass, m/s2 for gravity, and mts for height.\n\n");
printf("(The order is: m, g, h)\n\n");
/* variables */
double mass, grav, height, result;
if (argc != 4) {
printf("Invalid arguments.\n");
return -1;
}
/* converting arguments into float */
mass = atof(argv[1]);
grav = atof(argv[2]);
height = atof(argv[3]);
/* final calculation (m * g * v = x quantity of joules) */
result = mass * grav * height;
/* print of results */
printf("The result is: %6.2fJ\n", result);
return 0;
}

34
kinetic_energy.c Normal file
View File

@ -0,0 +1,34 @@
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(int argc, char *argv[]) {
/* intro */
printf("\nWarning: In order for this calculator to work properly, you must use kg for mass and m/s2 for velocity.\n\n");
printf("(The order is: m, v)\n\n");
/* variables */
double mass, vel, result;
if (argc != 3) {
printf("Invalid arguments.\n");
return -1;
}
/* converting arguments to float */
mass = atof(argv[1]);
vel = atof(argv[2]);
/* km to m/s */
vel = vel * 1000 / 3600;
/* final calculation (½ m * v² = x quantity of joules) */
result = (0.5 * mass * pow(vel, 2));
/* print of results */
printf("The result is: %6.2fJ", result);
return 0;
}