/*
* Filename: testStringReverse.cs
*
* Compile: csc testStringReverse.cs
* Execute: testStringReverse
*/
* Filename: testStringReverse.cs
*
* Compile: csc testStringReverse.cs
* Execute: testStringReverse
*/
using System;
public class StringReverseApp {
public static void Main(string[] args) {
string a, b;
a = "Hello, world!";
b = "안녕하세요?";
char[] arr = a.ToCharArray();
Array.Reverse(arr);
Console.WriteLine(new String(arr));
arr = b.ToCharArray();
Array.Reverse(arr);
Console.WriteLine(new String(arr));
}
}
/*
Expected result:
!dlrow ,olleH
?요세하녕안
*/
'프로그래밍 > C#' 카테고리의 다른 글
스트링 배열 정렬(sorting)하기 with C# (0) | 2009.04.19 |
---|---|
손으로 계산하는 긴자리 곱셈표 만들기 with C# (0) | 2009.03.07 |
손으로 만드는 나눗셈 계산표 with C# (0) | 2009.01.24 |
클래스 상속(subclassing) 예제 with C# (0) | 2009.01.24 |
삼각형 출력 예제를 통한 여러 가지 소스 비교 with C# (0) | 2009.01.24 |