Advertisement
IGRODELOFF

HW: Sequence

Oct 30th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homeWorkSequence
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int step = 7;
  10.             int startValue = 5;
  11.  
  12.             int calculationNextNumber = startValue;
  13.             int countNumersInSequence;
  14.  
  15.             Console.Write("Введите количество цифр в последовательности: ");
  16.             countNumersInSequence = Convert.ToInt32(Console.ReadLine());
  17.            
  18.             if (countNumersInSequence != 0)
  19.             {
  20.                 Console.Write($"{startValue}, ");
  21.  
  22.                 for (int i = 1; i < countNumersInSequence; i++)
  23.                 {
  24.                     calculationNextNumber += step;
  25.                     Console.Write($"{calculationNextNumber}, ");
  26.                 }
  27.             }
  28.             else
  29.             {
  30.                 Console.WriteLine("Последовательности нет.");
  31.             }
  32.         }
  33.     }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement