[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/subham500071430/JavaProgramming/patch-2/AllEven.java [Back]  [Original]

//Print all even numbers till n.
import java.util.*;
public class AllEven {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.print("Enter the value of n: ");
        int n = sc.nextInt();
    
        for(int i=1; i

Web Proxy Viewer  |  New URL  |  Original Page