Advertisement
Guest User

2.4

a guest
Aug 26th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2.  
  3. namespace lesson2
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int a = 7;
  10.             while (a <= 98)
  11.             {
  12.                 Console.Write(a + " ");
  13.                 a += 7;
  14.             }
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement