Another Question on Java programming

Joined
Sep 25, 2012
Messages
2
Reaction score
0
Write a program in Java that computes the trigonometric function sin(x) given by the
series
sin(x) = x – x3/3! + x5/5! – x7/7! + · · · .
The program should take as input a number from the command-line, and output the sine
value of that number.
 
Joined
Apr 25, 2017
Messages
248
Reaction score
32
Use Scanner class
Code:
Scanner input = new Scanner(System.in);
System.out.print("Please enter x value");
int x = input.nextInt();
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,754
Messages
2,569,528
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top