Advertisement
gride29

zad1

Nov 19th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.19 KB | None | 0 0
  1. using System;
  2.  
  3. namespace zadanie1
  4. {
  5.     class Program
  6.     {
  7.         static double Czas(int n, double sec, int m, int razy)
  8.         {
  9.             int i = 1;
  10.             int czas = 0;
  11.             while (i < n)
  12.             {
  13.                 i = 2 * i;
  14.                 for (int j = 0; j < n; j++)
  15.                 {
  16.                     for (int k = 0; k < m; k++)
  17.                     {
  18.                         czas = czas + 1;
  19.                     }
  20.                 }
  21.             }
  22.             double x = czas / razy;
  23.             double y = sec / razy;
  24.             int czas1 = 0;
  25.             int i1 = 1;
  26.             while (i1 < n)
  27.             {
  28.                 i1 = 3 * i1;
  29.                 for (int b = 0; b < m; b++)
  30.                 {
  31.                     for (int c = 0; c < m; c++)
  32.                     {
  33.                         czas1 = czas1 + 1;
  34.                     }
  35.                 }
  36.             }
  37.             double z = czas1 * razy;
  38.             double wynik = z * y / x;
  39.             return wynik;
  40.         }
  41.        
  42.         static void Main(string[] args)
  43.         {
  44.             Console.WriteLine(Czas(8, 30, 16, 2));
  45.             Console.ReadKey();
  46.         }
  47.     }
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement