Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace randomcheck
- {
- class Program
- {
- static void Main(string[] args)
- {
- int count = 0;
- int candles=210;
- while(candles>0)
- {
- count++;
- candles -=count;
- }
- Console.WriteLine(count);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment