📄 9_8.cpp
字号:
#include<stdio.h>
#define MAX3(x,y,z) (x>y?x:y)>z?(x>y?x:y):z
main()
{
int a,b,c,max;
printf("Please input three integers:\n");
scanf("%d,%d,%d",&a,&b,&c);
max=MAX3(a,b,c);
printf("the maximun of the three integers is: %d\n",max);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -