Computer Science, asked by Anonymous, 9 months ago

Write a program to display the series upto n terms:
3,6,11......
no copy or spam is allowed!!

Answers

Answered by kartik994
1

Answer:

class series

{

public void main(int n)

{

int i;

for(i=1;i >n;i× 2) ;

i+3;

}

}

Answered by devilwalker
1

Explanation:

Refer to the attachment

Attachments:
Similar questions