13 lines
234 B
C
13 lines
234 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int feet, fathoms;
|
|
|
|
fathoms = 2;
|
|
feet = 6 * fathoms;
|
|
printf("There are %d feet in %d fathoms!\n", feet, fathoms);
|
|
printf("Yes, I said %d feet!\n", 6 * fathoms);
|
|
|
|
return 0;
|
|
} |