Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- *
- * The loops in this program braid around one another like my love does around you.
- *
- */
- using System;
- public class valentineDayLoveMessageGreetingZero
- {
- static void Main ()
- {
- //
- // ++++STRING ARRAYS++++
- //
- string[] valentineDayStringArrayZero = new string [4] {"red", "blue", "sweet", "you"};
- string[] valentineDayStringArrayOne = new string [4] {"Roses are ", "Violets are ", "Sugar is ", "And so are "};
- //
- // ++++PROCESS AND OUTPUT++++
- //
- for (int i = 0; i < 4; i++)
- {
- Console.Write("\n\t{0}", valentineDayStringArrayOne[i]);
- for (int j = 1; j > 0; j--)
- {
- Console.Write(valentineDayStringArrayZero[i]);
- }
- }
- Console.WriteLine();
- Console.WriteLine();
- //
- // ++++EOF++++
- //
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment