c
来自「C程序设计经典900例.zip」· 代码 · 共 11 行
TXT
11 行
#include <stdio.h>
#include <stdlib.h>
void main (void)
{
printf("Maximum of %f and %f is %f\n",
10.0, 25.0, max(10.0, 25.0));
printf("Minimum of %f and %f is %f\n",
10.0, 25.0, min(10.0, 25.0));
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?