/* * Aluno: Gustavo Sverzut Barbieri RA: 008849 * Prof.: Arnaldo * MC102: lab10 */ #include int main() { float x0,v0,a,t; /* variaveis de entrada */ float x,v,d; /* variaveis de calculo */ scanf("%f %f %f %f",&x0,&v0,&a,&t); x = x0 + v0 * t + (a * t * t)/2; v = v0 + a * t; d = x - x0; printf("Velocidade: %.2f m/s\nPosição: %.2f m\n", v,x); if (d == 0) { printf("Deslocamento Nulo\n"); } else if (d < 0) { printf("Deslocamento: %.2f m para a esquerda\n",-1*d); } else { printf("Deslocamento: %.2f m para a direita\n",d); } return 0; } /* author: Gustavo Sverzut Barbieri (http://www.gustavobarbieri.com.br) */