#배열 회전하기
## CODE <a class='btn btn-default' href='/codes/10950'>Link</a>
```
public class Main {
public static void main(String[] args)
{
char[] name = "SEHONG".toCharArray();
printRotation(name);
}
private static void printRotation(char[] arr)
{
char temp = 0;
for(int i = 0; i < arr.length + 1; i++)
{
for(int a = 0; a < arr.length; a++)
{
System.out.print(arr[a]);
}
System.out.println();
temp = arr[arr.length - 1];
for(int j = arr.length - 2; j >= 0; j--)
{
arr[j+1] = arr[j];
}
arr[0] = temp;
}
}
}
```
## INPUT
```
```
## OUPUT
```
SEHONG
GSEHON
NGSEHO
ONGSEH
HONGSE
EHONGS
SEHONG
```
코드 작성하면서 별로인 부분이
첫번째 for문에 arr.length에 + 1을 한점과
반복문을 3개를 사용했는데 2개로도 충분히 할 수 있을거같은데 방법이 있을까요 ?
sehongpark님의 답변
# 다음 코드를 참조해보세요.
https://cloudstudying.kr/codes/2104