bhalash

Soppy Valentine's Day Message #0

Feb 14th, 2012
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 KB | None | 0 0
  1. /*
  2.  *
  3.  * The loops in this program braid around one another like my love does around you.
  4.  *
  5.  */
  6.  
  7.  using System;
  8.  
  9.  public class valentineDayLoveMessageGreetingZero
  10.  {
  11.     static void Main ()
  12.     {
  13.         //
  14.  
  15.         // ++++STRING ARRAYS++++
  16.  
  17.         //
  18.        
  19.         string[] valentineDayStringArrayZero = new string [4] {"red", "blue", "sweet", "you"};
  20.         string[] valentineDayStringArrayOne = new string [4] {"Roses are ", "Violets are ", "Sugar is ", "And so are "};
  21.  
  22.         //
  23.  
  24.         // ++++PROCESS AND OUTPUT++++
  25.  
  26.         //
  27.        
  28.         for (int i = 0; i < 4; i++)
  29.         {
  30.             Console.Write("\n\t{0}", valentineDayStringArrayOne[i]);
  31.  
  32.             for (int j = 1; j > 0; j--)
  33.             {
  34.                 Console.Write(valentineDayStringArrayZero[i]);
  35.             }
  36.         }
  37.  
  38.         Console.WriteLine();
  39.         Console.WriteLine();
  40.  
  41.         //
  42.  
  43.         // ++++EOF++++
  44.  
  45.         //
  46.     }
  47.  }
Advertisement
Add Comment
Please, Sign In to add comment