-2
ここに私のフルコードです。私は私の方程式にゼロを得ています。どんな助けでも大歓迎です。私は私の方程式からゼロを得続け、理由を知らないのです
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(void)
{
int x, y;
float a,t;
//Inputs
printf("What is the speed that the jet is traveling in km/hr? \nWhat is the distance traveled in meters? \n");
scanf("%d , %d", &x, &y);
//Calculations
a = x * 1/60 * 1/60 * 1/60 * 1000 ;
t = sqrt(y * a/2 ) ;
//Outputs
printf("The acceleration of the jet is %f meters per second squared. \n", a);
printf("The time it takes for the jet to reach takeoff speed is %f seconds. \n", t);
return 0;
}
'X'と 'も' float'する必要がy'をもたらすであろう。 – deamentiaemundi
整数の除算を浮動小数点の除算に変更することができます。 60年代後に1つのドットを追加すると、それが処理されます( '60.')。 – Evert
@deamentiaemundi必ずしもそうではなく、(何らかの理由で)整数速度を適用したい場合。後者は推奨されません。 – Evert