CodeFoeces-155A

题目

原题链接:A. I_love_%username%

题意

Vasya参加了n场比赛,在第一次后的每一次成绩如果创下记录(刷新最高或最低),就记录一次。

代码

#include
using namespace std;
int main() {
    int n,t,max,min,ans=0;
    scanf("%d",&n);
    scanf("%d",&t);
    max=min=t;
    while(n-->1){
        scanf("%d",&t);
        if(t>max){
            ans++;
            max=t;
        }
        if(t

你可能感兴趣的:(CodeFoeces-155A)