Q:

(Summation of a series) Write a program that displays the result of

0

(Summation of a series) Write a program that displays the result of

1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

/*
(Summation of a series) Write a program that displays the result of
				1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9.
*/
public class Exercise_01_06 {
	public static void main(String[] args) {
		System.out.println(1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9);
	}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now