Computer Applications
Write a program in Java to display the first 10 terms of the following series:
10, 20, 30, 40, ……..
Java
Java Iterative Stmts
310 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 10; i <= 100; i += 10) {
System.out.print(i + " ");
}
}
}Variable Description Table
Program Explanation
Output

Answered By
161 Likes
Related Questions
How many times will the following loop execute? Write the output of the code:
int x=10; while (true){ System.out.println(x++ * 2); if(x%3==0) break; }Define a class to accept a number and check whether it is a SUPERSPY number or not. A number is called SUPERSPY if the sum of the digits equals the number of the digits.
Example1:
Input: 1021 output: SUPERSPY number [SUM OF THE DIGITS = 1+0+2+1 = 4, NUMBER OF DIGITS = 4 ]Example2:
Input: 125 output: Not an SUPERSPY number [1+2+5 is not equal to 3]