Kosty_Fomin

Untitled

Oct 27th, 2015
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Veronichka_2
  4. {
  5.     class MainClass
  6.     {
  7.         public static void Main (string[] args)
  8.         {
  9.             double p=1, n=1;
  10.  
  11.             while(p<=300){
  12.                 p*=n;
  13.                 n+=0.5;
  14.  
  15.                
  16.  
  17.             };
  18.             Console.WriteLine (n - 0.5);
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment