ranee

Untitled

Jun 15th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Dynamic;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8.  
  9. namespace CSLight
  10. {
  11.     class Program
  12.     {
  13.         static void Main(string[] args)
  14.         {
  15.             //Выбрал цикл for, потому что известна конечная цель.
  16.             for (int i = 7; i < 99; i +=7)
  17.             {
  18.                 Console.Write(i + " ");
  19.             }
  20.  
  21.  
  22.            
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment