题解 1407: 最高的海拔

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最高的海拔 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() { int n,i,m,t; do {  scanf("%d",&n); } while(n<=0||n>=30)……

最高的海拔 (C)定值比较

摘要:解题思路:  取值比较注意事项:参考代码:#include "stdio.h"void main(void){    int n,x,max,i;        scanf("%d%d",&n,&x)……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, height[30],i,max_height;    scanf("%d", &n);  ……