algorithms
백준 (BOJ)
[BOJ]백준 13705번: Ax+Bsin(x)=C (baekjoon 13705)
·
13705번: Ax+Bsin(x)=C
코드
import java.util.Scanner;
public class BaekJoon13705 {
static int A, B, C , n;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
A = sc.nextInt();B = sc.nextInt(); C = sc.nextInt();
double t = A * Math.PI * n;
double t2 = B * n;
}
}