asked on
for (Decimal i = 0.1M; i <= 200; i++)
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
TRUSTED BY
while (i <= 200)
{
Response.Write(i);
i = i + 0.1M;
}