level 6
IM1980
楼主
第一个
# include <stdio.h>
# include <math.h>
#include <conio.h>
# define U 0.1
# define V 0.063
# define M 1.1
# define N 1.2
int main(void)
{
float x, y;
float m, n;
for (y = 1.3; y >= -1.3; y -= U)
{
for (x = -1.2; x <= 1.4; x += V)
{
if ((((x * x + y * y - 1) * (x * x + y * y - 1) * (x * x + y * y -
1) -
x * x * y * y * y) <= 0))
printf("*");
else
printf(" ");
fflush(stdout);
usleep(1000 * 5);
}
printf("\n");
}
return 0;
}
第二个
#include<stdio.h>
void main()
{
printf("世界,我爱你!\n");
}
2016年09月26日 15点09分
1
# include <stdio.h>
# include <math.h>
#include <conio.h>
# define U 0.1
# define V 0.063
# define M 1.1
# define N 1.2
int main(void)
{
float x, y;
float m, n;
for (y = 1.3; y >= -1.3; y -= U)
{
for (x = -1.2; x <= 1.4; x += V)
{
if ((((x * x + y * y - 1) * (x * x + y * y - 1) * (x * x + y * y -
1) -
x * x * y * y * y) <= 0))
printf("*");
else
printf(" ");
fflush(stdout);
usleep(1000 * 5);
}
printf("\n");
}
return 0;
}
第二个
#include<stdio.h>
void main()
{
printf("世界,我爱你!\n");
}
