#include <stdio.h>

int main() {
	printf("我是中国人!生是中国人,死是中国魂!美丽中国我爱你(づ ̄3 ̄)づ╭❤~\n\n");

	// 练习一下循环的使用
	int i;
	for (i=1; i<=20; i++) {
		printf("加油努力,中国我爱你!!! %d 次\n", i);
	}

	printf("\n\n爱国的心形图案:");

	for (float y = 1.5f; y > -1.5f; y -= 0.1f) {
		for (float x = -1.5f; x < 1.5f; x += 0.05f) {
			float a = x * x + y * y - 1;
			putchar(a * a * a - x * x * y * y * y <= 0.0f ? '*' : ' ');
		}
		putchar('\n');
	}

	return 0;
}