Computer Science, asked by ICSEgirl, 1 year ago

write a program in Java to display the first 10 terms of the series :
1.5 , 3.0 , 4.5 , 6.0,.......

Answers

Answered by Ronaldo1226
39
hey i just wrote the main algo rest u wrote
y=1.5
for ( int i =1 ; i <=10 ; i ++)
{
y= y+ 1.5 ;
}
Answered by varun3632
24
This is your answer see in the image
Attachments:
Similar questions