U E D R , A S I H C RSS

반복문자열/김태훈zyint

소 감



코 드

~cpp 

#include <stdio.h>

void repeat_prt(char* string,int count)
{
	int i;
	for(i=0;i<count;i++)
	{
		puts(string);
	}

}


int main()
{

	repeat_prt("CAUCSE LOVE.",5);

	return 0;

}

나한테 할 말

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:29:33
Processing time 0.0076 sec