Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
3
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags
java x 15
Member Avatar for kulrik

I am really confused by this problem. PLEASE HELP Write a program that reads a set of floating point data values from the input. When the user indicates the end of the input, print out the count if the values, the average, and the standard deviation. The average of a …

Member Avatar for tong1
0
233
Member Avatar for Sharon5

I have a difficult time with getting the programs started. I read the book but I am not getting anywhere. There just is not enough examples to help me. The book we are using for CSC 135 is called Java Software Solutions by Lewis & Loftus. We are starting on …

Member Avatar for BestJewSinceJC
0
483
Member Avatar for kulrik

Having trouble with this one: The formula y = nekt can be used for estimating growth where n is the initial amount k is a constant t is the time y is the final amount This formula will be used for estimating the bacteria growth in a lab experiment. The …

Member Avatar for kulrik
0
2K
Member Avatar for kulrik

Alright guys i got another one: In the class Mymath, create a public method called calculateFactor. The method has two two arguments of type integer and checks whether the smaller of the two integers is a factor of the larger of the two integers. The method will return a factor …

Member Avatar for javaAddict
-1
1K
Member Avatar for kulrik

Alright. Ive been at this problem for a few days know and cant figure out what's wrong with my coding. The Problem: Create a method called displayPerfectNumber in your own class named myMath. The method displayPerfectNumber asks a user to enter a integer number and displays every perfect number from …

Member Avatar for stevelg
0
536
Member Avatar for kulrik

Im having trouble with this problem: The Maclaurin series for arctan(x) is a formula which allows us to compute an approximation to arctan(x) as a polynomial in x. The formula is: arctan(x) = x - x3/3 + x5/5 - x7/7 + x9/9 - x11/11 + . . . Write a …

Member Avatar for javaAddict
0
310
Member Avatar for kulrik

Homework help Up Vote 0 Down Vote #1 24 Minutes Ago | Add to kulrik's Reputation | Flag Bad Post Im having trouble with this problem: The Maclaurin series for arctan(x) is a formula which allows us to compute an approximation to arctan(x) as a polynomial in x. The formula …

Member Avatar for darkagn
-1
80
Member Avatar for kulrik

With this problem. I finished the coding, but my output is displayed in Radians instead of Degrees. Can anyone help? Here's my coding: public class MyMath { public void displaySin() { int angle = 0; System.out.println("Angle\tSin(Angle)\tValue"); while(angle<=360){ final double RADIANCONST=180; double angleRadian; angleRadian = Math.sin((RADIANCONST*angle)/RADIANCONST); System.out.printf("%d\tSin\t(%d)\t%5.2f\n",angle,angle, angleRadian); angle = angle …

Member Avatar for kulrik
-1
80