Sie sind auf Seite 1von 1

#include<stdio.

h>

#include<stdlib.h>

#include<math.h>

int main (void){

float m, t;

printf("Este programa calcula el pago por llamadas\n");

printf("Da el número de minutos\n");

scanf("%f",&m);

t=m*1.18;

printf("El total a pagar es:%f\n",t);

system("pause");

return 0;

Das könnte Ihnen auch gefallen