{solved} C# 9.2 practice: parquet for living room
Task: find out the size of the living room in square meters (decimal). My solution was the following: static void Main(string[] args) { //sides of the room double length; double width; length = 5.4; Convert.ToDouble(Console.ReadLine()); width = 2.3; Convert.ToDouble(Console.ReadLine()); //output the area double size = length * width; Console.WriteLine(size); Output: 12.42 So far, so correct. Yet in this practice there are 4 more tasks to complete, which i dont now how to complete within one code/answer. So i cant successfully complete the practice though the first task was correct... Thats unsatisfying. I am only able to fulfill one task at a time. That way i wont receive the xp... I want all of the tasks in the result screen marked with a green tick, not just one. But i dont know how to do it. Any advice for that? Thx :)