首页 > 试题广场 >

求最大值

[编程题]求最大值
  • 热度指数:6755 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 64M,其他语言128M
  • 算法知识视频讲解
输入10个整数,要求输出其中的最大值。

输入描述:
测试数据有多组,每组10个整数。


输出描述:
对于每组输入,请输出其最大值(有回车)。
示例1

输入

10 22 23 152 65 79 85 96 32 1

输出

max=152
头像 用户抉择
发表于 2021-03-29 20:27:55
#include <stdio.h> int main(){     int a[10],i,max;     while(scanf("%d",&a[0])!=EOF) 展开全文
头像 呜呜呜www
发表于 2023-08-14 14:11:19
#include<stdio.h> #define N 10 int main(){ int array[N]; for(int i=0;i<N;i++){ scanf("%d",&array[i]); } int max=0; for(i 展开全文
头像 牛客784280659号
发表于 2024-03-02 16:16:15
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { vector<int> vc; int x; 展开全文
头像 给我就亿下
发表于 2023-03-19 17:12:04
#include <iostream> #include <limits.h> using namespace std; int main () { int current; int max = INT_MIN; for (int i = 0; i < 10; 展开全文
头像 MountainsHao
发表于 2024-04-01 15:06:11
#include <stdio.h> #include <stdlib.h> int cmp(const void *a,const void *b){ return *((int *)a)-*((int*)b); } int main() { int a 展开全文
头像 笑川不吃香菜
发表于 2024-03-13 09:31:46
#include <algorithm> #include <bits/stdc++.h> using namespace std; int main() { int n; vector<int>v; while (cin >> 展开全文
头像 普罗列塔丽亚
发表于 2022-02-05 12:40:19
使用climits头文件可以直接使用INT_MIN等宏 #include<iostream> #include<climits> using namespace std; int main(){   &nb 展开全文
头像 kelell
发表于 2023-02-13 15:38:16
#include <iostream> using namespace std; int main() { int a[10]; for(int i=0;i<10;i++){ cin>>a[i]; } int max=a 展开全文

问题信息

难度:
62条回答 5283浏览

热门推荐

通过挑战的用户

查看代码
求最大值