Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace iJunior2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int firstValue = 7;
  10.             int iterationCount = 14;
  11.  
  12.             for (int i = 1; i <= iterationCount; i++)
  13.             {
  14.                 Console.Write(firstValue * i + " ");
  15.             }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement