Xcode 11-打印文本中变量的彩色高亮显示(C语言)

Xcode 11-打印文本中变量的彩色高亮显示(C语言),c,xcode,syntax,colors,highlight,C,Xcode,Syntax,Colors,Highlight,有没有办法突出显示打印文本中变量的位置?我在Xcode 11的任何地方都找不到任何语法高亮显示颜色 #include <stdio.h> #include <math.h> void volume_of_cylinder(void) { printf("Please enter the radius of the cylinder:\n"); double radius; scanf("%lf", &radius); prin

有没有办法突出显示打印文本中变量的位置?我在Xcode 11的任何地方都找不到任何语法高亮显示颜色

#include <stdio.h>
#include <math.h>

void volume_of_cylinder(void) {
    printf("Please enter the radius of the cylinder:\n");

    double radius;
    scanf("%lf", &radius);

    printf("Please enter the height of the cylinder:\n");

    double height;
    scanf("%lf", &height);

    double volume;
    volume = M_PI*height*(radius*radius);

    printf("A radius of %.4lf and a height of %.4lf correspond to a volume of %.4lf.\n", radius, height, volume);
}

int main(void) {
    volume_of_cylinder();
    return 0;
}
#包括
#包括
圆柱体的空隙体积(空隙){
printf(“请输入圆柱体的半径:\n”);
双半径;
扫描频率(“%lf”、&radius);
printf(“请输入气缸的高度:\n”);
双高;
扫描频率(“%lf”和高度);
双卷;
体积=M_PI*高度*(半径*半径);
printf(“半径%.4lf和高度%.4lf对应于体积%.4lf.\n”,半径,高度,体积);
}
内部主(空){
气缸的容积();
返回0;
}
例如,在这个简单的代码中,我想用颜色突出显示最后一个
printf
函数中的“
%.4lf

多谢各位