Write a program to display the series upto n terms:
3,6,11......
no copy or spam is allowed!!
Answers
Answered by
1
Answer:
class series
{
public void main(int n)
{
int i;
for(i=1;i >n;i× 2) ;
i+3;
}
}
Answered by
1
Explanation:
Refer to the attachment
Attachments:
Similar questions