using System;
public class Program
{
public static void Main()
float width = 10;
float totalWidth = 200;
float startPos = totalWidth * 0.5f;
startPos -= width / 2;
float fullSpace = startPos * 2;
float spaceBetween = totalWidth / 10;
for(int i = 0; i < 10; i++)
Console.WriteLine(spaceBetween);
}