8 lines
73 B
Text
8 lines
73 B
Text
void hailstone1(int);
|
|
|
|
int main(void)
|
|
{
|
|
hailstone1(27);
|
|
|
|
return 0;
|
|
}
|