The OR operator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

The OR operator

I am working in Lucky Winner (PRO) and cannot figure how to write the code. The hint says Number a is a multiple of number b, if a%b == 0. Am I to make variables for the number for the multiples? multiple of 10 and 9 a = 10 b = 9 scanner input number then number %a && number%b == 0

14th Apr 2021, 7:09 PM
Melissa Rommelman
Melissa Rommelman - avatar
5 Answers
+ 1
Hi! your condition says that the program should: 1. output "you won $ 200" if the number is BOTH a multiple of 10 AND 9. 2. output "you won $ 50" if the number is a multiple of only 4 OR 6. 3. in all other cases, it should output something else. what thoughts do you have about this?
14th Apr 2021, 8:09 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
+ 1
Can you show your code?
15th Apr 2021, 1:06 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
0
Okay I think it is not working because if am not putting (). I will try that. Thanks
15th Apr 2021, 11:59 AM
Melissa Rommelman
Melissa Rommelman - avatar
0
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); int number = read.nextInt(); //your code goes here if(number%10 == 0 && number%9 == 0){ System.out.println("You won $200"); } else if(number%4 == 0 || number%6 == 0){ System.out.println("You won $50"); } else{ System.out.println("Try again"); } } } if took a couple of tries because I want writing the first if statement correct and not using else if -- a newbee Thanks for the help
15th Apr 2021, 2:58 PM
Melissa Rommelman
Melissa Rommelman - avatar
0
Congratulations! your program has passed all the tests! 🥳
15th Apr 2021, 10:07 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar