Code coach Skee-Ball | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 1

Code coach Skee-Ball

I get incorrect in test3 of skee-ball and this test case is hidden . What should I do ? Anyone here please suggest me !

26th Oct 2020, 3:56 PM
Zaw Zaw Win🇲🇲
Zaw Zaw Win🇲🇲 - avatar
3 ответов
+ 6
Zaw Zaw Win 🇲🇲, We can't read your thoughts. Share the code to make it possible for us to suggest you something.
26th Oct 2020, 4:00 PM
Artem 🇺🇦
Artem 🇺🇦 - avatar
+ 2
#include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; if (a / 12 >= b) cout << "Buy it!"; else cout << "Try again"; return 0; }
26th Oct 2020, 4:42 PM
Soheil
Soheil - avatar
0
x=int(input()) y=int(input()) if ((x/12)>=y): print("Buy it!") else: print("Try again") It's simple and easy try copy pasting in exact same way.
31st May 2022, 11:28 AM
Hrithika Reddy
Hrithika Reddy - avatar