C# Programming
Write, compile, and test a program named Lyrics that displays at least four lines of your favorite song.
Code Patterns to follow are the following (All these have to check out:
-Checks for correct use of WriteLine (4x)
Description
Searched your code for a specific pattern:
(\s*WriteLine\(".*"\);\s*){4,}
Start code with this outline:
using static System.Console;
class Lyrics
{
static void Main()
{
// Write your main here
}
}
using static System.Console; class Lyrics { static void Main() { WriteLine("Cause sometimes you just feel tired, you feel weak"); WriteLine("And when you feel weak you feel like you want to just give up"); WriteLine("But you gotta search within you, you gotta find that inner strength"); WriteLine("And just pull that **** out of you and get that motivation to not give up"); } }
Get Answers For Free
Most questions answered within 1 hours.