Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace Veronichka_2
- {
- class MainClass
- {
- public static void Main (string[] args)
- {
- double p=1, n=1;
- while(p<=300){
- p*=n;
- n+=0.5;
- };
- Console.WriteLine (n - 0.5);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment