JRadio Menu buttons - JAVA
- by user337465
I have a relatively easy question. I have to create a java GUI to do math based calculations. I have to have a menu item that will double the variable that I am doing calculations with. For example
variable = 1
if radio button = selected{
variable = variable * 2
}
So, how would I achieve the if statement there?
thankyou