1.9.7
Posted lxzyzby
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.9.7相关的知识,希望对你有一定的参考价值。
07:不与最大数相同的数字之和
- 总时间限制:
- 1000ms
- 内存限制:
- 65536kB
- 描述
-
输出一个整数数列中不与最大数相同的数字之和。
- 输入
- 输入分为两行:
第一行为N(N为接下来数的个数,N <= 100);
第二行为N个整数,数与数之间以一个空格分开,每个整数的范围是-1000,000到1000,000。 - 输出
- 输出为N个数中除去最大数其余数字之和。
- 样例输入
-
3 1 2 3
- 样例输出
-
3
1 #include<cstdio> 2 using namespace std; 3 int an(int[],int); 4 int main() 5 { 6 int n; 7 scanf("%d",&n); 8 int a[n]; 9 for(int i=0;i<n;i++) 10 scanf("%d",&a[i]); 11 printf("%d",an(a,n)); 12 return 0; 13 14 } 15 int an(int a[],int n) 16 { 17 int ans=a[0],m=0; 18 for(int i=0;i<n;i++) 19 if(a[i]>ans)ans=a[i]; 20 for(int i=0;i<n;i++) 21 if(a[i]!=ans)m+=a[i]; 22 return m; 23 }
以上是关于1.9.7的主要内容,如果未能解决你的问题,请参考以下文章
Centos 编译安装Apache subversion-1.9.7 + httpd 2.4.32