Computer Science, asked by worldspace2006, 7 months ago

Develop a java program that will print the series (16*1)+(14*2)...(4*7)..Only ANEEK MITRA WILL ANSWER!​

Answers

Answered by raziz3530
1

Answer:

math hai kya. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Answered by Aneekmitra2006
1

public class SeriesX

{

public static void main(String[]args)

{

int j,i;

for(i=16,j=1;i>=4;i-=2,j++)

{

System.out.print("("+i+" * "+j+")"+ " + ");

}

}

}

This is your answer....

Similar questions