Home Answers Viewqa Java-Beginners Series program in Java

 
 


soumyadeep
Series program in Java
1 Answer(s)      3 years and 6 months ago
Posted in : Java Beginners

Wap to print the series and find the sum:-
1+2+4+9+28+125





My email-id is:-
pal.soumyadeep123@gmail.com
View Answers

January 8, 2010 at 2:16 AM


Hi,
Try This.

public class SumOfSeries {

/**
* @param 'begin' holds the start of the series
* @param 'end' holds the end of the series
* @param 'series' holds the series need to be printed
*/
StringBuffer series=new StringBuffer();
public static void main(String[] args) {
int begin = 0;
int end = 5;
SumOfSeries obj = new SumOfSeries();
int result = obj.Sum(begin, end);
obj.MoidfySeries();
System.out.println("Sum of the series from "+begin+" to "+end+" : "+obj.series+result);
}

public int factorial(int num){
int temp=1;
if(num==0)
return 1;
for(int i=num;i>0;i--)
{
temp = temp*i;
}
return temp;
}

public int Sum(int start, int end){
int sumOfSeries=0;
int fact=0;
int sum = 0;
for(int i=start;i<=end;i++){
fact = factorial(i);
sum = fact+i;
series = series.append(sum).append('+');
sumOfSeries = sumOfSeries + sum;
}
return sumOfSeries ;
}

/**
* This method modifies the series that need to be printed
* by replacing the last character of the String Buffer '+' to '='
*/

public void MoidfySeries(){
int index = series.lastIndexOf("+");
series.setCharAt(index, '=');
}
}

Regards,
javaquest2010









Related Pages:
Series Program
Series Program  Please help me to write code for this series Write a Java Method to solve the following problem: a.Evaluate the result of the series: 1-2+3-4+5-6+ââ?¬Â¦Ã¢â?¬Â¦+n (or ââ?¬â??n depending on value of n
Series Program
Series Program  Please help me to write code for this series Write a Java Method to solve the following problem: a.Evaluate the result of the series: 1-2+3-4+5-6+â?¦â?¦+n   hi friend, Try the following code may
Series program in Java - Java Beginners
Series program in Java  Wap to print the series and find the sum:- 1... the start of the series * @param 'end' holds the end of the series * @param 'series' holds the series need to be printed */ StringBuffer series
java programming:generating series
java programming:generating series  Write a program to generate series: 12345 1234 123 12 1 1 12 123 1234 12345 12345   Here is a code that displays the following pattern: 12345 1234 123 12 1 1 12 123 1234
Java programming: generating series
Java programming: generating series  Write a program to accept a string using buffered reader and replace character sequence 'cat' with 'dog'   Here is a java code that accept the string from the user using
sum of fibonacci series
sum of fibonacci series  Write a Java program to print Fibonacci series upto n and find their sum also. 0+1+1+2+3+5+8+13+21ââ?¬Â¦Ã¢â?¬Â¦Ã¢â?¬Â¦Ã¢â?¬Â¦=sum   Hi, Please see the thread Fibonacci program. Thanks
Series of long Integers
Series of long Integers  write a program to print the series of long integer number? Write a program in java to find out whether the given number is prime or not   Hello Friend, 1)Fibonacci series: import java.util.
series printing
series printing  Question:- write a program to print the following series:- 0,1,3,6,15,21,28
series printing
series printing  Question:- write a program to print the following series:- 0,1,3,6,15,21,28
sum of the series
sum of the series  Program to sum the series 1+1/1!+1/2!+1/3!+....n
program
program  WAP a java program to form 1/2+3/4+5/6+7/8 series
1.Computing cos(x) using the cosine series: Recall that cos(x) is given by the following series: - Java Interview Questions
1.Computing cos(x) using the cosine series: Recall that cos(x) is given by the following series:   Write a program to compute cosine of a number x using the above series. Ignore terms less than 0.00001.  Hi friend
fibonacci series
fibonacci series  Program to print the first n fibonacci numbers using function.the program must use InputStreamReader and BufferedReader.   Hi Friend, Try the following code: import java.io.*; import java.util.
java programming:generating series
java programming:generating series  WAP to print series: | + || + ||| + |||| + .......... n terms
LOOP-HOLE SERIES GENERATION
LOOP-HOLE SERIES GENERATION  QUESTION:- WRITE A PROGRAM TO GENERATE THE FOLLOWING SERIES CALLED LOOPHOLE SERIES:- 3,5,53,13,19,7,19,13,53,5,3
LOOP-HOLE SERIES GENERATION
LOOP-HOLE SERIES GENERATION  QUESTION:- WRITE A PROGRAM TO GENERATE THE FOLLOWING SERIES CALLED LOOPHOLE SERIES:- 3,5,53,13,19,7,19,13,53,5,3
Fibonacci series in java
Fibonacci series in java In this section you will learn about fibonacci number in java.  Fibonacci number or Fibonacci sequence are the number... value proceeding it. Here is the code for Fibonacci program: import
printing series in java
printing series in java  1 123 12345 1234567 12345 123 1   Here is a code for the following pattern: 1 123 12345 1234567 12345 123 1 class Pattern{ public static void main(String[] args
program to display the first ten terms of the series
program to display the first ten terms of the series  Write a program to display the first ten terms of the following series : 1) 1,-3,5,-7,9..... 2) 3,6,12,24..... 3) 2,5,10,17....... 4) 0,1,2,3,6............ 5) 0,3,8,15
Time series sorce code
series forecasting the future......... source code in java swings. ? plz help...Time series sorce code   hi.......... I want to show the output of my project as time series. Can u give me a simple code for time series. Where i
Time series sorce code
series forecasting the future......... source code in java swings. ? plz help...Time series sorce code   hi.......... I want to show the output of my project as time series. Can u give me a simple code for time series. Where i
Ordinal Numbers Series Program in Java
Ordinal Numbers Series Program in Java An ordinal number shows a relative position, e.g., 1st, 2nd, 3rd, 4th,etc. In other words, ordinal numbers series are the words representing the rank of a number with respect to some order
printing java series
printing java series  * *** ***** ******** ***** *** *   Post the format properly
HOW TO SHOW TIME SERIES
HOW TO SHOW TIME SERIES  hi................ i require a small code in java swings to display the output as time series. Can u plz help???????? Reply....... thanks in advance
java programming:generating series
java programming:generating series  1234554321 1234 4321 123 321 12 21 1 1   Here is a java code that displays the following pattern 1234554321 1234 4321 123 321 12 21 1 1 class Pattern
java programming:generating series
java programming:generating series  12345 1234 123 12 1 1 12 123 1234 12345   Here is a code that displays the following pattern: 12345 1234 123 12 1 1 12 123 1234 12345 class Pattern { public
series
series  series 2-4+6-8+..............-20
a Java program
a Java program    Write a Java program to print even numbers from 2 to 1024? Write a Java program to print ? My Name is Mirza? 100 times? Write a Java program to print Fibonacci Series? Write a Java program to reverse a number
WAP in java to print the series 1*2*3
WAP in java to print the series 1*2*3  WAP in java to print the series 123
Messages Brokers,MQ Series,TIBCO - Java Beginners
Messages Brokers,MQ Series,TIBCO  Any one explain where we use these technologies "Messages Brokers","MQ Series","TIBCO". In the above 3 technologies which one is better for me. i did SCJP1.5 and i am working on Struts
1-2+5-10+17-26 sum the series - Java Beginners
{ /** * @param 'series' holds the series need to be printed */ StringBuffer series = new StringBuffer(); public static void main(String[] args...; series = series.append(temp); if(j%2 == 0){ evenNums
program - Java Beginners
program  create a series as 55555 54444 54333 54322 54321  Hi friend here is ur solution class Series { public static void main(String args[]) { int series=55555; int deduct=1111; int m=1000; int j
code for timer in java netbeans for online test series countdown timer
code for timer in java netbeans for online test series countdown timer  code for timer in java netbeans for online test series countdown timer
Java Program - Java Beginners
Java Program  The numbers in the following sequence are called... a program using doâ?¦..while loop to calculate and print the first m Fibonacci numbers. (Hint : After the first two numbers in the series, each number is the sum
java program - Java Beginners
it will b cleared.the program should b done onlu using java applet but not with swing...java program  there are two buttons-one for "show" and the other for "clear".after pressing show button a fibonacci series will appear where each
java program - Java Beginners
java program  I have to make two radio buttons where one to show and one for clear.when u ser choose show button a fibonacci series will appear and on choosing clear the page will b cleared.how can i implement this?i cannot take
program - Java Beginners
program  Hello..can u write the following program for me ..thanks 1. Write a program that reads three numbers and an integer n. The program should print the n numbers of a series where each integer in the series is the sum
java program - Java Beginners
java program  take the value of "A" then calculate and print the sum of the following series.... 1/A! + 2/A2! + 4/A3! + 8/A4! .......15 terms actually the numbers here also after the letter " A " are exponents.... thank
Need a java program
Need a java program  Write a code of java to print the fibonacci series.   for(int j=1;j<=5;j++) { int i,a,b,c; a=1;b=1;int n=5; System.out.print("fibonicci series is " + a +" " + b
program - Java Beginners
program  take the value of x,y, and a then calculate and print the sum of the following series: x1/y2 + x2/y4 + x3/y6......20 terms.... actually the numbers after x and y are exponents...like x to the power 1 / y
program
program  write a program different between to dates in terms of days in java
program - Java Beginners
program  1-Write a computer program using java to generate following series Out put 1,2,3,0,5,-2,7,-4------20number? By using public static void main(String args[]) 2-Write a computer program using java
program - Java Beginners
program  create a series as 0, 3, 8, 15 ,24 ,35.....n terms?  class Series { public static void main(String[] args) { int n,y; y = 0; System.out.println(y); for(n=1;n<8;n++) { y=y+((2*n)+1
program
program  explanation of program on extending thread class   Hi Friend, Please go through the following link: Java Threads Thanks
program
program  write a java program to input a no. and print wheather the no. is a special no or not. (special no. are those no whose factorial of the sum of digit of the no is same as the original
program - Java Beginners
program  a program to print 123454321 1234 4321 123 321 12 21 1 1  make sure about ur first line 123454321.... Rajanikant  Hi friend, As required Code to design the series of number
This series of progressive examples shows a typical pattern for building simple applications with a window.
Java NotesAbout Examples This series of progressive examples shows... Window shows a main program that creates an empty window (JFrame). Example - Second Window shows a main program with a subclass of JPanel to build
program
is working in Java department and salary is 10000". Instantiate the Employee class