U E D R , A S I H C RSS

새싹교실/2016/리바이반/별찍기참고코드 (rev. 1.3)

새싹교실/2016/리바이반/별찍기참고코드


1. 참고코드


#include <stdio.h>
#pragma warning(disable:4996)

int main(void) {
	const char star = '*';
	const char space = ' ';

	char c;
	int rows = 15;
	int cols = 14;
	for (int i = 0; i < rows; i++) {
		for (int j = 0; j < cols; j++) {
			c = space;

			if (/* 작성하세요 */) {
				if (/* 작성하세요 */)
					c = star;
			}
			else if (/* 작성하세요 */) {
				if (/* 작성하세요 */)
					c = star;
			}
			else if (/* 작성하세요 */) {
				if (/* 작성하세요 */)
					c = star;
			}
			else {
				if (/* 작성하세요 */)
					c = star;
			}



			printf("%c%c", c, c);
		}
		printf("\n");
	}


	return 0;
}

2. 결과

싹교실/2016/리바이반/0509/attachment:binggeul.png

3. 잡담

  • 이 양식으로 구현하면 쉽습니다 - 장용운
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:30:01
Processing time 0.0140 sec