Facebook
From Szabó Nikoletta-Laura, 6 Months ago, written in C#.
This paste is a reply to Working with strings from Palma - view diff
Embed
Download Paste or View Raw
Hits: 142
  1. using System;
  2.  
  3. class Program
  4. {
  5.     static void NikiPresentation()
  6.     {
  7.         string favoriteMusicVerse = @"Got any grapes?";
  8.  
  9.         string name = "Szabo Nikoletta-Laura";
  10.         string profile = "computer science";
  11.         string hobby = "reading";
  12.         string birthDate = "2003/10/06";
  13.  
  14.         System.Console.Write("Favorite Music Verse: ");
  15.         System.Console.Write(favoriteMusicVerse);
  16.         System.Console.WriteLine();
  17.         System.Console.WriteLine($"Name: {name}");
  18.         System.Console.WriteLine($"Profile: {profile}");
  19.         System.Console.WriteLine($"Hobby: {hobby}");
  20.         System.Console.WriteLine($"Birth Date: {birthDate}");
  21.     }
  22.     static void Main()
  23.     {
  24.         NikiPresentation();
  25.     }
  26.  
  27.    
  28. }
  29.