You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//U15. Calcula el precio de un boleto de viaje, tomando en cuenta el número de kilómetros que se van a recorrer, siendo el precio de pesos 10,50 por Km.
//El usuario ingresa cuántos kilómetros va a recorrer.
#include <stdio.h>
#include <locale.h>
#include <math.h>
int main()
{
setlocale(LC_ALL,"spanish");
float dinero,distancia;
dinero=0;
distancia=0;
printf("Ingrese la cantidad de distancia que va a recorrer (en kilómetros): ");