Advertisement
Sephinroth

prac 5 ex 3

Oct 28th, 2019
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication4
  7. {
  8.     class Program
  9.     {
  10.         static int QuanOfNum(int a, ref int q)
  11.         {
  12.             if (a > 0)
  13.             {
  14.                 a /= 10;
  15.                 q++;
  16.                 return QuanOfNum(a, ref q);
  17.             }
  18.             else
  19.                 return q;
  20.         }
  21.  
  22.         static void Main(string[] args)
  23.         {
  24.             int q = 0;
  25.             Console.WriteLine("Введите a: ");
  26.             int a = int.Parse(Console.ReadLine());
  27.             Console.WriteLine("Количество чисел {0} — {1}", a, QuanOfNum(a, ref q));
  28.             Console.ReadKey();
  29.         }
  30.     }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement