⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 9_8.cpp

📁 C程序参考,简单易懂,是初学者不可少的参考资料
💻 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 + -