제목 : 예제 : 연결연산자
글번호:
|
|
258
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/06/10 오후 5:21:00
|
조회수:
|
|
5317
|
//날짜와시간.cs
using System;
public class 날짜와시간
{
public static void Main()
{
//전체 날짜와 시간값 출력
Console.WriteLine("{0}", DateTime.Now);
//따로따로만 필요하다면...
string strOutput = "\"";
strOutput += DateTime.Now.Year + "년 \b";
strOutput += DateTime.Now.Month + "월\t"
+ DateTime.Now.Day + "일\"\r\n\"";
strOutput += DateTime.Now.Hour + "시 \b";
strOutput += DateTime.Now.Minute + "분\t"
+ DateTime.Now.Second + "초\"\r\n";
//출력
Console.WriteLine("{0}", strOutput);
}
}