Notice
Recent Posts
Recent Comments
Link
거의 알고리즘 일기장
기본 입출력 본문
C#은 string으로 입력받아서 parsing해서 사용.
한 문자 입력받을때는 read.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization.Formatters.Binary;
using System.Threading;
namespace ConsoleApp1
{
class Program
{
static void Calculate(int a, int b)
{
Console.WriteLine("{0} + {1} = {2}", a, b, a+ b);
Console.WriteLine("{0} - {1} = {2}", a, b, a - b);
Console.WriteLine("{0} * {1} = {2}", a, b, a * b);
Console.WriteLine("{0} / {1} = {2}", a, b, a / b);
}
static void Main(string[] args)
{
Console.Write("숫자를 입력하쇼 : ");
int num1 = int.Parse(Console.ReadLine());
Console.Write("숫자를 입력하쇼 : ");
int num2 = int.Parse(Console.ReadLine());
Console.WriteLine("{0} {1}", num1, num2);
Calculate(num1, num2);
}
}
}
반응형
'c# 문법' 카테고리의 다른 글
문자열 위치찾기 (0) | 2020.05.12 |
---|---|
박싱과 언박싱 예제 (0) | 2020.05.11 |
class를 이용한 간단 예제 2개 (0) | 2020.05.11 |
c#에서의 queue의 push, pop, front (0) | 2020.05.11 |
c#관련 기본 용어 & 기본사항 (0) | 2020.04.21 |
Comments