거두절미하고 바로 코드 블럭 보여드리겠습니다.
using System;
namespace Calculator
{
class Program
{
static void Main(string[] args)
{
// Declare variables and then initialize to zero.
int num1 = 0; int num2 = 0;
// Display title as the C# console calculator app.
Console.WriteLine("Console Calculator in C#\r");
Console.WriteLine("------------------------\n");
// Ask the user to type the first number.
Console.WriteLine("Type a number, and then press Enter");
num1 = Convert.ToInt32(Console.ReadLine());
// Ask the user to type the second number.
Console.WriteLine("Type another number, and then press Enter");
num2 = Convert.ToInt32(Console.ReadLine());
// Ask the user to choose an option.
Console.WriteLine("Choose an option from the following list:");
Console.WriteLine("\ta - Add");
Console.WriteLine("\ts - Subtract");
Console.WriteLine("\tm - Multiply");
Console.WriteLine("\td - Divide");
Console.Write("Your option? ");
// Use a switch statement to do the math.
switch (Console.ReadLine())
{
case "a":
Console.WriteLine($"Your result: {num1} + {num2} = " + (num1 + num2));
break;
case "s":
Console.WriteLine($"Your result: {num1} - {num2} = " + (num1 - num2));
break;
case "m":
Console.WriteLine($"Your result: {num1} * {num2} = " + (num1 * num2));
break;
case "d":
Console.WriteLine($"Your result: {num1} / {num2} = " + (num1 / num2));
break;
}
// Wait for the user to respond before closing.
Console.Write("Press any key to close the Calculator console app...");
Console.ReadKey();
}
}
}
|
cs |
이 정도면 쓸만하지 않습니까?
코드가 너무 길 때를 대비해 내부 스크롤을 활성화 할 것인지 설정할 수도 있습니다.
https://colorscripter.com/info#e
이 사이트에서 코드를 작성한 뒤 HTML 코드를 복사하여 붙여 넣으시면 됩니다.
상단 방에서 세부설정을 할 수가 있는데 줄 번호는 제거하는 게 좋습니다. 루리웹의 CSS 때문인지 줄 번호의 줄간격과 코드의 줄 간격이 달라서 코드와 줄 번호가 매칭되지 않습니다.