목록2024/09/12 (2)
충분히 쌓여가는
산술연산자는 4개의 사칙연산자(+, -, *, /)와 나머지(%) 연산자로 총 5가지가 있다(연산의 결과는 숫자)산술연산에서 중요한 것은 자료형(피연산자의 자료형에 따라 계산 결과값의 자료형이 결정됨) 코드using System;namespace A017_ArithmeticOperators{ class Program { static void Main(string[] args) { Console.WriteLine("정수의 계산"); Console.WriteLine(123 + 45); Console.WriteLine(123 - 45); Console.WriteLine(123 * 45); ..
연산자 종류 연산자는 중복되어 사용 가능"3+4"에서 '+'는 산술연산자로 사용되어 계산의 결과는 7이지만,"Hello " + "World!"와 같이 문자열과 문자열 사이에 있는 '+'는 문자열 연결 연산자로 사용되어 결과는 "Hello World!"가 된다. 코드using System;namespace A016_Operators{ class Program { static void Main(string[] args) { Console.WriteLine(3 + 4 * 5); Console.WriteLine((3 + 4) * 5); Console.WriteLine(3 + 4 / 5); Conso..