소 감



코 드

~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;

}

나한테 할 말

Retrieved from http://wiki.zeropage.org/wiki.php/반복문자열/김태훈zyint
last modified 2021-02-07 05:29:33