New to programming need help with C# Birthday Party Problem - I am not at all sure how to right this? Could I get some help plea | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

New to programming need help with C# Birthday Party Problem - I am not at all sure how to right this? Could I get some help plea

under "// your code goes here:" I am not at all sure how to right this? Could I get some help please? Birthday Party Problem: You are organizing a birthday party and need N number of balloons. You already have 14 balloons for decoration. The given program takes the N required number of balloons as input. Task Calculate and output how many balloons you need to buy. Sample Input 30 Sample Output 16 Explanation The count of the balloons you need to buy is calculated by this formula: balloons-14. So, in this case, the count is 30-14=16. Code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int balloons = Convert.ToInt32(Console.ReadLine()); //your code goes here } } }

17th Jan 2022, 4:37 PM
Harrison Rogers
Harrison Rogers - avatar
1 Answer
+ 4
You already have 14 balloons in your hands. You just have to calculate how many balloons you need to add to complete the decoration. 16 is to 30, 6 is to 20 and so on
17th Jan 2022, 4:45 PM
Simba
Simba - avatar