Search:

Type: Posts; User: Jpwolfe

Search: Search took 0.11 seconds.

  1. Re: Binary Multiplier only working for certain cases

    For example, when I put in 11(3) and 11(3), the output is 9 which is correct. However, if I put in 1010(10) and 111(7), the output is 35 when it should be 70.

    --- Update ---

    For example, when...
  2. Binary Multiplier only working for certain cases

    I am trying to create a program that scans two numbers from the user, multiplies them, and then prints the binary result. As of now, my program can multiply binary numbers and output a decimal...
  3. Java Horoscope program running but not as intended

    import java.util.Scanner;
    public class Horoscope {
    public static void main(String[] args) {
    System.out.println("Enter you birth month:");
    Scanner sc = new Scanner(System.in);
    String mon =...
Results 1 to 3 of 3