码迷,mamicode.com
首页 > 其他好文 > 详细

(使用if-else述句)对多个变数求最大值的练习

时间:2019-04-15 18:01:21      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:span   cas   not   std   enter   printf   code   amp   最大   

#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述句)对多个变数求最大值的练习

标签:span   cas   not   std   enter   printf   code   amp   最大   

原文地址:https://www.cnblogs.com/pxxfxxxx/p/10711851.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!