Advertisement
Guest User

3zad

a guest
Apr 26th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace Laba2
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. int i=1;
  12. float p;
  13. p = 10;
  14. while (p < 100)
  15. {
  16. p = ((p/100)*10) + p;
  17. i++;
  18. }
  19. Console.WriteLine(i);
  20. Console.ReadKey();
  21.  
  22.  
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement