Advertisement
AIwinter

array000

Oct 5th, 2022
769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1. int[] owo = { 5, 0, 5, 1 };
  2.             foreach (int i in owo)
  3.             {
  4.                 Console.Write(i);
  5.             }
  6.             Console.WriteLine();
  7.             Console.Write(owo[0].ToString(), owo[2].ToString(), owo[3].ToString());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement