kiek as beaiskinciau, kad kazka suprantu vistiek isaiskes kad as dar
labai daug ko nesuprantu
> tau yra tolkas, nes jei nebutum zalias, tokiu klausimu nekiltu
>
> key7479 <tromesa1999@gmail.com> raš? news:pnm1ea$pui$1
> @trimpas.omnitel.net:
>
>> /*
>> * C# Program to Check whether the Entered Number is Even or Odd
>> */
>> using System;
>> using System.Collections.Generic;
>> using System.Linq;
>> using System.Text;
>>
>> namespace check1
>> {
>> class Program
>> {
>> static void Main(string[] args)
>> {
>> int i;
>> Console.Write("Enter a Number : ");
>> i = int.Parse(Console.ReadLine());
>> if (i % 2 == 0)
>> {
>> Console.Write("Entered Number is an Even Number");
>> Console.Read();
>> }
>> else
>> {
>> Console.Write("Entered Number is an Odd Number");
>> Console.Read();
>> }
>> }
>> }
>> }
>>
>