-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path018.cs
46 lines (35 loc) · 1.11 KB
/
018.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
42
43
44
45
46
/*
Desafio 018
Problema: Faça um programa que leia um ângulo qualquer e mostre
na tela o valor do seno, cosseno e tangente desse ângulo
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() {
double graus = double.Parse(
io.input("Informe o angulo em graus: ")
);
double pi = 3.14159;
double radianos = graus * (pi / 180);
double sen = Math.Sin(radianos);
double cos = Math.Cos(radianos);
double tan = Math.Tan(radianos);
double senTrunc = Math.Truncate(sen * 100) / 100;
double cosTrunc = Math.Truncate(cos * 100) / 100;
double tanTrunc = Math.Truncate(tan * 100) / 100;
io.print($"Seno {senTrunc}");
io.print($"Cosseno {cosTrunc}");
io.print($"Tangente {tanTrunc}");
}
}