WAP in java display the first 10 terms of :
24 , 99 , 224 , 399
plz no spamming...
Answers
Answered by
26
Answer:
class series
{public static void main()
{int m=6, n=4;
for( int i =1; I<=10;I++)
{int p=m*n;
System.out.println(p);
m=m+5;
n=n+5;}}}
Answered by
0
Question:
Java program to display 1st 10 terms of the following series: 24, 99, 224, 39
Answer:
class series
{
public static void main()
{
int m=6, n=4;
for( int i =1; I<=10;I++)
{
int p=m*n;
System.out.println(p);
m=m+5;
n=n+5;
}
}
}
Similar questions