Guest User

Untitled

a guest
May 27th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace H1T3
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             String olio1 = "Matti";
  13.             String olio2 = "Meikäläinen";
  14.  
  15.             System.Console.WriteLine("Henkilön nimi on ");
  16.             System.Console.WriteLine(olio1);
  17.             System.Console.WriteLine(olio2);
  18.             System.Console.ReadLine();
  19.         }
  20.     }
  21. }
Add Comment
Please, Sign In to add comment