Welcome back! You're off to a great start in learning C#. In the previous lessons, we covered basic syntax and how to work with variables and data types. Now, it's time to learn how to use those variables creatively by printing them within sentences. This is a crucial skill for making your output more descriptive and informative.
In this lesson, you will explore how to print variables within a sentence. This involves two main techniques:
By mastering these two methods, you will be able to create more dynamic and understandable outputs. Here’s what you will be able to do by the end of this lesson:
C#1string planet = "Mars"; 2int starsVisited = 5; 3 4// Printing variables within a sentence using string concatenation 5Console.WriteLine("Cosmo has visited " + starsVisited + " stars on his journey to " + planet); 6 7// Printing variables within a sentence using string interpolation 8Console.WriteLine($"On his way to {planet}, Cosmo has seen {starsVisited} stars");
Printing variables within a sentence is important because it helps to provide context to the data your program is working with. Instead of just printing raw numbers or string values, you can give those values meaning by embedding them within descriptive sentences. This skill will make your programs more user-friendly and easier to understand.
Exciting, right? Let's dive into the practice section to explore and apply these techniques together.