+ 27
[ ASSIGNMENT: ] Is 'n' Divisible by x AND y?
TASK : Create a method isDivisible(n, x, y) that checks if a number n is divisible by two numbers x AND y. NOTE : All inputs are positive, non-zero digits! For Example : isDivisible(3, 1, 3) --> true because 3 is divisible by 1 and 3 isDivisible(12, 2, 6) --> true because 12 is divisible by 2 and 6 isDivisible(100, 5, 3) --> false because 100 is not divisible by 3 isDivisible(12, 7, 5) --> false because 12 is neither divisible by 7 nor 5 HappyCodings!:-)
35 Respostas
+ 21
https://code.sololearn.com/cf2n3WmP7i59/?ref=app
+ 18
nati
👉 Language!! 👈 😋👍
+ 17
I will give you one more easy task!! 😀😄👍😉🤘
Thanks a lot everyone for excellent support and participating!! 🤗
/*
* Here I am doubting between the two
* answers, 🤔😅😎👌
* which one to choose for the best ☡❓
* 😄🤗👍👏👏
*/
+ 16
VcC
😃😄👍😎🤘
+ 16
nati
TASK :
Create a method isDivisible(n, x, y) that checks if a number n is divisible by two numbers x AND y ?
&&
Make a Code!!
+ 15
nati
We All have solutions like this !! 😊
boolean isDivisible(int n,int x,int y)
{
return n%x == 0 && n%y == 0 ? true : false;
}
but we need creativity in our codes!! 😆👍
+ 15
nati
Okay, just slowly, we all struggle with something ☡
That's why we are here, SL allows us to progress, learn and find first-class people and excellent developers! 😊😆👍
I wish you luck and just go forward, we need time for everything! ☺👌
GoodLuck!! 😉 && HappyCodings!! 😄🤘
+ 15
D_Stark I agree with you 👍
+ 14
Xan
You did a great job!! 😄👌👏👏😀
Thank you so much for listening my suggestion and do a job. 😉👍
I'm really grateful to you! 😆
+ 10
My first java code :)
Updated!
https://code.sololearn.com/cRNeMtEiVLNc/?ref=app
+ 9
🙋Hey! Here's mine... 😀😊
Zero is divisible by any number different than zero.
https://code.sololearn.com/cIprMzfx96bK/?ref=app
+ 8
https://code.sololearn.com/cvJWHt9SI3EN/?ref=app
+ 8
https://code.sololearn.com/cB5J8lE2zk1s/?ref=app
+ 8
+ 7
even better:
isdiv=lambda n,*p:not any(n%a for a in p)
print(isdiv(24,2,3,4),isdiv(6,3,4))