lights1.c
来自「C.Game.Programming.For.Dummies.原码」· C语言 代码 · 共 12 行
C
12 行
#include <stdio.h>
#include <math.h>
void main()
{
double lights;
lights=pow(-2,8); //figure 2 to the 8th power
printf("Milton, we need %0.0f lights.\n",lights);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?