Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

zad.

1
string a = Console.ReadLine();
char[] b = a.ToCharArray();
for (int i = 0; i < b.Length; i++)
{
b[i]++;
}
Console.WriteLine(b);
////////
zad. 2
int n = Convert.ToInt32(Console.ReadLine());
string a = Console.ReadLine();
char[] b = a.ToCharArray();
for (int i = 0; i < n; i++)
{
for (int j = 0; j < b.Length; j++)
{
b[j]++;
}
}
Console.WriteLine(b);

You might also like