336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
목표 :
1. 기본 변수를 만들어서 출력 해봅니다.
소스 코드 : Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _02_Variable
{
class Program
{
static void Main(string[] args)
{
int a = 2;
float b = 3.5f;
Console.WriteLine(a);
Console.WriteLine(b);
}
}
}
결과
'Programing C# > C# Basic grammar' 카테고리의 다른 글
06 다차원 배열 (0) | 2019.05.11 |
---|---|
05 배열 (0) | 2018.11.06 |
04 문자와 문자열 (0) | 2018.02.24 |
03 기본변수들 출력 (0) | 2018.02.19 |
01 Hello World (0) | 2018.02.18 |