Finishing code project on area of a circle
I simply can't create the output. As in, I've created an output but can't figure out how to display it. Have I missed a tutorial? This is the code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { const double pi = 3.14; double radius; if (args.Length == 0) { return; } radius = Convert.ToInt32(args[0]); double circleArea = pi * radius * radius; // Console.WriteLine(circleArea); // MessageBox.Show(circleArea); // Debug.WriteLine(circleArea); } } }