- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace nonopt
{
class Program
{
static void Main(string[] args)
{
string h = "h";
string e = "e";
string l1 = "l";
string l2 = "l";
string o1 = "o";
string he = h + e;
string ll = l1 + l2;
string hell = he + ll;
string hello = hell + o1;
string w = "w";
string o2 = "o";
string r = "r";
string l3 = "l";
string d = "d";
string wo = w + o2;
string rl = r + l3;
string worl = wo + rl;
string world = worl + d;
string empty = " ";
Console.WriteLine(hello + empty + world);
Console.ReadKey();
}
}
}