-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path015.cs
41 lines (31 loc) · 993 Bytes
/
015.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Desafio 015
Problema: Escreva um programa que pergunte a quantidade de Km percorridos por um
carro alugado e a quantidade de dias pelos quais ele foi alugado.
Calcule o preço a pagar, sabendo que o carro custa R$ 60 por dia e R$ 0.15 por km rodado
Resolução do problema:
*/
using System;
static class io {
public static string input(string text) {
Console.Write(text);
return Console.ReadLine();
}
public static void print(object data, string end="\n") {
string text = data.ToString();
Console.Write($"{text}{end}");
}
}
class Program {
public static void Main() {
int dia = int.Parse(
io.input("Dias alugado: ")
);
double km = double.Parse(
io.input("Km rodados: ")
);
double valor = (dia * 60) + (km * 0.15);
double valorTruncado = Math.Truncate((valor * 100)) / 100;
io.print($"Total a pagar R${valorTruncado}");
}
}