。。不用数组。。:永远的丰碑 (C语言代码) 摘要:解题思路:#include<stdio.h> int main() { int n,i,max,a; while(scanf("%d",&n)!=EOF&&n) { scanf(…… 题解列表 2019年02月27日 1 点赞 0 评论 451 浏览 评分:0.0
编写题解 1394: 永远的丰碑 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main () { int n; while(~scanf ("%d"…… 题解列表 2022年12月20日 0 点赞 0 评论 185 浏览 评分:0.0
永远的丰碑 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i,j,z=0,max; int n[99],a[99][99],b[99]; for(i=0…… 题解列表 2018年03月07日 0 点赞 0 评论 542 浏览 评分:0.0
可AC 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> int main() { int N, num[10], i, max; while (scanf("…… 题解列表 2018年07月29日 1 点赞 0 评论 412 浏览 评分:0.0
1394: 永远的丰碑 摘要:解题思路:注意事项:参考代码:while True: try: a=list(map(int,input().strip().split())) if a[0] ==0: break …… 题解列表 2022年01月31日 0 点赞 0 评论 118 浏览 评分:0.0
永远的丰碑-题解(C语言代码) 摘要:#include #include int main () { int n; int a[10]; while(scanf("%d",&n)) { if(n==…… 题解列表 2020年02月18日 0 点赞 0 评论 328 浏览 评分:0.0
永远的丰碑 (C语言代码) 摘要:解题思路:注意事项:参考代码#include<stdio.h>#include<stdlib.h>void f(int n){ int i,*p,max; p=(int*)malloc…… 题解列表 2018年12月29日 0 点赞 0 评论 363 浏览 评分:0.0
C语言 之 永远的丰碑 (C语言代码) 摘要:解题思路:本题可以使用数组,动态数组,Vector容器等等多种工具求解。注意事项:如果使用vector数组记得每次清空。vec.clear();参考代码:#include <stdio.h> #in…… 题解列表 2019年01月20日 1 点赞 0 评论 535 浏览 评分:0.0
利用列表求得最大值 摘要:解题思路:注意事项:参考代码:while True: a=list(map(int,input().split())) if a==[0]: break a=a[1:]…… 题解列表 2022年04月06日 0 点赞 0 评论 120 浏览 评分:0.0
永远的丰碑 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int n[100],i,num=0,a[100][100]; scanf("%d",&n[num]…… 题解列表 2017年10月22日 0 点赞 0 评论 717 浏览 评分:0.0