(使用if-else述句)对多个变数求最大值的练习
Posted pxxfxxxxx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(使用if-else述句)对多个变数求最大值的练习相关的知识,希望对你有一定的参考价值。
#include <stdio.h> int main() { int a,b,c,max; printf("Please enter three integers: "); scanf("%d%d%d",&a,&b,&c); if (a >= b && a >= c) { max = a; }else if (b >= a && b >= c) { max = b; } else { max = c; } printf("The maximum ids %d.", max); return 0; }
switch 述句
switch (整数值) { case 常数整数值: 程式片段; break; default: 程式片段; break; }
如:
#include <stdio.h> int main() { int id; printf("ID: "); scanf("%d",&id); switch (id) { case 2: printf("John\n"); break; case 13: printf("Mary\n"); break; default: printf("Not found\n"); break; } return 0; }
以上是关于(使用if-else述句)对多个变数求最大值的练习的主要内容,如果未能解决你的问题,请参考以下文章