제어문

while

Do While 조건식

arg.

Loop 


while 조건식

wend
while(조건){
}

조건, loop문

for문

for(int i = 1; i<=5 ; i++){
    
}

foreach 문

foreach (string value in 배열){
}

if문 if_else 문

if(조건식){
}

if(조건식){
}else if(조건식){
}else{
}

switch문

switch(조건){
	case 조건: 
		----
	break;
	default:
	break;
}
평점을 남겨주세요
평점 : 2.5
총 투표수 : 1