Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,003 questions

51,950 answers

573 users

How to generate binary numbers from 1 to N in Java

3 Answers

0 votes
public class MyClass {
    public static final int LEN = 100;
    static void printBinaryNumber(int n) {
        int binary[] = new int[LEN];
        int i = 0;
          
        while (n > 0) {
            binary[i] = n % 2;
            n = n / 2;
            i++;
        }
        for (int j = i - 1; j >= 0; j--)
            System.out.print(binary[j]);
        System.out.println();
    }
    static void generateBinaryNumbers(int n) {
        for (int i = 1; i <= n; i++) {
            printBinaryNumber(i);
        }
    }
    public static void main(String args[]) {
        int N = 15;
 
        generateBinaryNumbers(N);
    }
}



/*
run:

1
10
11
100
101
110
111
1000
1001
1010
1011
1100
1101
1110
1111

*/

 



answered Jul 20, 2020 by avibootz
0 votes
import java.util.ArrayDeque;
import java.util.Queue;

public class MyClass {
    static void printBinaryNumbers(int n) {
    	Queue<String> q = new ArrayDeque<>();
		q.add("1");

		int i = 1;
		while (i++ <= n) {
			q.add(q.peek() + '0');
			q.add(q.peek() + '1');

			System.out.print(q.poll() + '\n');
		}
    }
    public static void main(String args[]) {
        int N = 15;
  
        printBinaryNumbers(N);
    }
}
 
 
 
/*
run:
 
1
10
11
100
101
110
111
1000
1001
1010
1011
1100
1101
1110
1111
 
*/

 



answered Jul 21, 2020 by avibootz
0 votes
public class MyClass {
    static void generateBinaryNumbers(int n) {
        for (int i = 1; i <= n; i++) {
            System.out.println(Integer.toBinaryString(i));
        }
    }
    public static void main(String args[]) {
        int N = 15;
  
        generateBinaryNumbers(N);
    }
}
 
 
 
/*
run:
 
1
10
11
100
101
110
111
1000
1001
1010
1011
1100
1101
1110
1111
 
*/

 



answered Jul 23, 2020 by avibootz

Related questions

1 answer 141 views
1 answer 246 views
1 answer 150 views
2 answers 210 views
1 answer 153 views
2 answers 163 views
1 answer 130 views
...