Advertisement
pol9na

Untitled

Mar 1st, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.48 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Сprogect
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int coefficient = 7,number;
  10.             for (int i = 1; i < 15; i++)
  11.             {
  12.                 number = coefficient * i;
  13.                 Console.WriteLine(number);
  14.             }
  15.             //for применяется тогда, когда есть четкий шаг.
  16.             Console.ReadKey();
  17.         }
  18.            
  19.         }
  20.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement