书上的习题。关于C语言语言的“词”
一道练习题;#include <stdio.h>
#include <stdlib.h>
int gcd (int , int);
int main (void)
{
int result;
result = gcd (150, 35);
printf ("the gcd of 150 and 35 is %i\n", result);
result = gcd (1026, 405);
printf ("the gcd of 1026 and 405 is %i\n, result");
printf ("the gcd of 83 and 240 is %i\n, gcd (83, 240)");
system("PAUSE");
return 0;
}
int gcd (int u, int v)
{
int temp;
while (v != 0)
{
temp = u % v;
u = v;
v = temp;
}
return u;
}
C语言中的单词有五类;分别是; 关键字; 标识符; 常量; 字符串文字量; 标点符号
while (v != 0) 就如此行代码说;while是关键字,算是词。()这个括号是标点,算是词。v ! = 0 0算常量么?不明白。。。
("the gcd of 150 and 35 is %i\n", result); 此行代码中 除去result和最后的;别的是不是都算是词了(红字部分)?
怎么越看越乱。怎么看都不对。词应该怎么区分。
答题的能不能把上面那段代码中的词用红字标识出来。不胜感激。。。