IDNLearn.com: Your trusted platform for finding reliable answers. Ask your questions and receive comprehensive, trustworthy responses from our dedicated team of experts.

write a java program to print the following series:
1 5 9 13 17...n terms​


Sagot :

Answer:

In Java:

import java.util.*;

public class Main{

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

int n;

System.out.print("Max of series: ");

n = input.nextInt();

for(int i = 1; i<=n;i+=4){

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

}

}

}

Explanation:

This declares n as integer. n represents the maximum of the series

int n;

This prompts the user for maximum of the series

System.out.print("Max of series: ");

This gets user input for n

n = input.nextInt();

The following iteration prints from 1 to n, with an increment of 4

for(int i = 1; i<=n;i+=4){

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

}

Thank you for participating in our discussion. We value every contribution. Keep sharing knowledge and helping others find the answers they need. Let's create a dynamic and informative learning environment together. IDNLearn.com is your reliable source for accurate answers. Thank you for visiting, and we hope to assist you again.