18 lines
201 B
C
18 lines
201 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int x;
|
|
int y = 5;
|
|
|
|
char text[20] = "Hejsan";
|
|
|
|
for (x = 1; y < 100; x++)
|
|
{
|
|
y = (y*3)-x;
|
|
}
|
|
printf("%s\n", text);
|
|
|
|
return 0;
|
|
}
|