Need help in Skee Ball | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Need help in Skee Ball

Skee-Ball You are playing a game at your local arcade, and you receive 1 ticket from the machine for every 12 points that you score. You want to purchase a squirt gun with your tickets. Given your score, and the price of the squirt gun (in tickets) are you able to buy it? Task Evaluate whether or not you have scored high enough to earn enough tickets to purchase the squirt gun at the arcade. Input Format The first input is an integer value that represents the points that you scored playing, and the second input is an integer value that represents the cost of the squirt gun (in tickets). Output Format A string that say 'Buy it!' if you will have enough tickets, or a string that says 'Try again' if you will not.

9th Sep 2020, 6:49 AM
Shravan Mathapati
Shravan Mathapati - avatar
3 Answers
+ 1
My code is #include <iostream> using namespace std; int main() { int score; int tickets,valueguns; int guns; cin >> score; cin >> valueguns; tickets = score/12; guns = tickets/valueguns; if(guns>=1){ cout << "Buy it!"; } else { cout<<"Try again"; } return 0; }
9th Sep 2020, 6:54 AM
Shravan Mathapati
Shravan Mathapati - avatar
0
Nasif Rahman i wanted to know why my code is not passing 1 case out of 5
9th Sep 2020, 6:57 AM
Shravan Mathapati
Shravan Mathapati - avatar
0
Nasif Rahman thanks it worked
9th Sep 2020, 7:03 AM
Shravan Mathapati
Shravan Mathapati - avatar