12
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int[] nums = { 1, 2, 3, 4 };
8
var str = String.Join(",", nums);
9
10
Console.WriteLine(str);
11
}
12
}
Cached Result
Please enter the diameter of your circle
>