Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

반복문자열/남도연

From ZeroWiki
#include <iostream.h>
void input(){
	cout<<"CAUCSE LOVE"<<endl;
}

void main(){
	int i;
	for (i=0;i<5;i++){
		input();
	}
}