本文介绍了为什么我的输出返回变量时间和高度的随机值?寻找指导而不是直接回答。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include <stdio.h>
#include <math.h>
#define G 32

int main(){
    int i=0, t=1, distance, D=(1/2)*G* pow(1,2), height=distance-D;

    printf("What is the height of the dragon's nest in feet?\n ");
    scanf("%d", &distance);
    printf("Time\tAltitude\n");

        if (distance<= 0)
            printf("0\t0\n");

        while (distance>0) {
            D=distance-D;
            printf("%d\t%d.\n",t, D);
            }

return 0;
}

推荐答案


这篇关于为什么我的输出返回变量时间和高度的随机值?寻找指导而不是直接回答。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 18:33