Дано целое число.если оно является положительным , то прибавить к нему 1; в противном случае не изменять его .вывести полученное число.visual studio языком c#
public class Test { public static void Main() { int a; Console.Write("a = "); a = int.Parse(Console.ReadLine()); if (a > 0) a++; Console.WriteLine("a = {0}", a); System.Console.ReadKey(); } }
public class Test
{
public static void Main()
{
int a;
Console.Write("a = ");
a = int.Parse(Console.ReadLine());
if (a > 0) a++;
Console.WriteLine("a = {0}", a);
System.Console.ReadKey();
}
}
Пример:
a = 17
a = 18