最大数和最小数

Posted advacneqxj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最大数和最小数相关的知识,希望对你有一定的参考价值。

最大数
#include <stdio.h>
#define MAX 10

int main() {
int n, a[MAX];
printf("Input the number of figure(<10): ");
scanf("%d",&n);
for (int i = 0; i < n; i++)
{
scanf("%d",&a[i]);
}
int temp;
temp = a[0];
for (int j = 1; j < n; j++)
{
if (temp < a[j])
temp = a[j];
}
printf("the max number is:%d ",temp);
return 0;
}
最小数
#include <stdio.h>
#define MAX 10

int main() {
int n, a[MAX];
printf("Input the number of figure(<10): ");
scanf("%d",&n);
for (int i = 0; i < n; i++)
{
scanf("%d",&a[i]);
}
int temp;
temp = a[0];
for (int j = 1; j < n; j++)
{
if (temp > a[j])
temp = a[j];
}
printf("the mix number is:%d ",temp);
return 0;
}

以上是关于最大数和最小数的主要内容,如果未能解决你的问题,请参考以下文章

算法拾遗最大数和最小数

最大数和最小数

在java程序中怎么取输入的最小数和最大数

同时找出最大数和最小数

codevs1201 最小数和最大数

Leetcode刷题100天(阿里云周赛)—最大数和最小数—day42