`I'm not sure what code to insert or even where, but I would like to check the number I enter is an odd number.

    import java.io.*;

import javax.swing.JOptionPane;

public class Diamond {
public static void main(String [] args) throws IOException {

BufferedReader stdin = new BufferedReader (new InputStreamReader (System.in));
String input; 
int num;
System.out.println("input number: ");
input = stdin.readLine ();
num = Integer.parseInt(input);

if (num % 2 ==1){
int d = num;
int e = 0;
for (int a = 0; a <= num; a++) {
for (int c = d; c>= 1; c-- )
System.out.print(" ");
d-=1;
for (int b = 1; b <= a; b++)
System.out.print ("* ");
System.out.println();
}
num-=1;
for (int a = 0; a<=num; a++) {
for (int b = num; b > a; b--)
System.out.print (" *");
System.out.println(); 
for (int c = 0; c <= e; c++)
System.out.print(" ");
e+=1;

}}else
    {System.out.println("Please enter an odd number!");
    }
}
}
link|improve this question
1  
Mike, you don't put code between [code] and [/code] here. I just selected it and clicked on the code icon; another way when using code blocks is to indent it four spaces. – David Thornley Mar 11 '11 at 18:41
I'm sorry, but I can't get the code to show up correctly in the post. – Mike Mar 11 '11 at 18:55
I added the if-else statement, but don't think it's correct. – Mike Mar 11 '11 at 19:00
Pull input = stdin.readLine (); num = Integer.parseInt(input); out of the if block, num must be initialised before being checked. – Andrew Mar 11 '11 at 19:13
feedback

2 Answers

Use modular arithmetic:

if (number % 2 == 0) {
  // even
} else {
  // odd
}
link|improve this answer
can u tell me code to find odd even no without using modulo operator. – Gensheriff Dec 23 '11 at 10:53
Just as a quick reply, in Python you could do: int(z / 2) == float(z) / 2 but most will use the obvious %. – miku Dec 23 '11 at 11:26
ya sure use % is correct but i have not use this % operator? – Gensheriff Dec 23 '11 at 12:37
feedback

You can NOT have readLine inside of that if. First you need to get the value and next you can use your if.

It goes like this:

BufferedReader stdin = new BufferedReader (new InputStreamReader (System.in));

String input; 
int num;

System.out.println("input number: ");

  input = stdin.readLine();
  num = Integer.parseInt(input);

if (num % 2 == 1) {
// odd
} else {
  System.out.println("Please enter an odd number!");
}

Finally - do NOT use values named "a", "e" or "d" - it's very confusing. Just name vars with names that let reader know/guess their role in your code. I have no idea what is the meaning of your "a" or b, c, d etc. For example, your num should be named enteredValue to clarify your code.

link|improve this answer
I changed it, but something is not where it should be. When I enter an even number it does nothing. If I enter an odd number it works fine. – Mike Mar 11 '11 at 20:51
Id like to help u, but ur code is awful to read. U need to rename ur variables... add some private functions in place of multiple code line inside of if-else -> if - function1() (named correctly!) else - function2() ... introcs.cs.princeton.edu/11style read it plz, or google sth else bout clear code and remeber - code needs to be easy to read! – dantuch Mar 11 '11 at 21:28
Please refrain from using text-speak in your answers and your comments. This is a site for professional and enthusiast programmers, and as such expects at least some level of professionalism in questions and answers. – Rob Hruska Mar 11 '11 at 21:29
@Rob Hruska so be profesional and help Mike in place of learning me to use "you" in place of "u". I just want to help, not to act like someone else – dantuch Mar 11 '11 at 21:35
2  
Using full words (e.g. "you" instead of "u", "your" instead of "ur") makes your answers easier to read and comprehend. Since there's no limit on the size of the content, there's no reason not to take the time to spell things out and make your answers legible. It will also help others to take your answer more seriously, so it serves your interests as someone trying to help. – Rob Hruska Mar 11 '11 at 21:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.