-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLunaGodScriptCSScript.cs
More file actions
27 lines (27 loc) ยท 1.85 KB
/
LunaGodScriptCSScript.cs
File metadata and controls
27 lines (27 loc) ยท 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
public class LunaGod {
public static void Main(){
Console.WriteLine("ใซใๆงใกใขใข๏ผ๏ผ๏ผ");
Console.WriteLine("ใซใๆงใๅใฎๅๅใๆใใฆใใใชใใ๏ผใ");
var userName = Console.ReadLine();
Console.WriteLine($"ๅใฎๅๅ:{userName}");
Console.WriteLine($"ใซใๆงใใชใใปใฉใๅใฎๅๅใฏ{userName}ใจ่จใใฎใ ใชใ");
Console.WriteLine($"ใซใๆงใ{userName}ใๆ่ฟใฎ่ชฟๅญใฏใฉใใ ๏ผใ");
Console.WriteLine("(Y:ใจใฆใ่ฏใ/N:ๆชใ)");
var status = Console.ReadLine();
Console.WriteLine($"{status}ใ้ธๆ");
if (status == "Y") {
Console.WriteLine("ใซใๆงใใใใใใใใใๅ
ๆฐใใใงใชใซใใใ ใใ");
Console.WriteLine("ใซใๆงใ" + userName + "ใ็งใฏๅคงๅคใๆฐๅใใใใ");
Console.WriteLine("ใซใๆงใ" + userName + "ใๅผใ็ถใ้ ผใใๆๅพ
ใใฆใใใใ");
} else if (status == "N"){
Console.WriteLine( "ใซใๆงใใใใใใใใใปใปใปใชใใฐใ" + userName + "ใ็งใจไธ็ทใซไผใใใ");
Console.WriteLine("ใซใๆงใๆๆฅญใฎใใจใฏๆฐใซใใใจใ่ฏใ" + userName +"ใ็ก็ใใใจใ็งใใคใใฆใฆใใใใใชใ");
Console.WriteLine("ใซใๆงใๅฎๅฟใใใ็งใฏใกใใใจ" + userName + "ใฎๅดใซใใฆใใใคใใใ ใ");
Console.WriteLine("ใซใๆงใใฉใใใใ" + userName + $"ใฏๅฏใฆใใพใฃใใใไปๆนใชใใชใปใปใปใใใใฟใปใปใป${userName}ใ");
} else {
Console.WriteLine("ใซใๆงใใใพใชใใ" + userName +"ใ็งใซใฏใใใใใใใชใใฟใใใ ใ");
Console.WriteLine("ใซใๆงใ" + userName + "ใใพใๆฌกใฎๆฉไผใซ่ฉฑใใใ");
}
}
}