#include <stdio.h>
int feet, fathoms; ——选用的意义的名字
——使用空行
fathoms = 2;
feet = 6*fathoms; ——每行一个语句
printf (“There are %d feet in %d fathoms!\n”,feet,fathoms);
return 0;
Int main (void) /* converts 2 fathoms to feet */ ——使用注释
int feet, fathoms; ——选用的意义的名字
——使用空行
fathoms = 2;
feet = 6*fathoms; ——每行一个语句
printf (“There are %d feet in %d fathoms!\n”,feet,fathoms);
return 0;
}