Ответ:
7
Объяснение:
int x = 2;
int y = 1;
while(x<5)
{
x += 2;
y += 3;
}
Console.WriteLine(y);
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
7
Объяснение:
int x = 2;
int y = 1;
while(x<5)
{
x += 2;
y += 3;
}
Console.WriteLine(y);