목록c-> C# (1)
Dailelog

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; /* * built-int type 변수 특징 * -의미: 정수를 저장하는 거억장소 * -목적: 셀수 있는 숫자 저장 * 학생수, 지갑의 돈, 자동차 수 소수점 없음 * -상수: 1234. 0x7f12. 0755 * -크기: 4바이트 * -표형양식: 양수경우/음수경우 * -연산자: +-* %(modulo operator) * -주의사항: overflow / truncation * -short(ushort):2 bytes * -long(ulong: 8bytes * * 문자형 변수(character va..
언어/CS
2022. 9. 5. 13:02