Welcome To The World Of Java

This site will teach you the basics of Java. It is not necessary to have any prior programming experience.

Print Sum of Series 1/1^2 + 1/2^2 + 1/3^2 …………1/n^2 in Java.

12:21:00 PM | Comments (0)

import java.util.Scanner; public class Series  {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   System.out.println("Enter the no of terms...

Read more

Print Sum of series 1+ (1+2) + (1+2+3)……. (1+2+3+…….n) in Java

12:06:00 PM | Comments (5)

import java.util.Scanner; public class Series   {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   System.out.println("Enter the no of...

Read more

Print sum of series 1/1^3 – 1/2^3 + 1/3^3…….1/n^3 in Java.

11:47:00 AM | Comments (0)

import java.util.Scanner; public class  Series  {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   double sum = 0;...

Read more

Page 1 of 6123456Next