ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 2078. Bowling game

Страйк и спэр
Posted by Hawook 4 Jun 2016 15:10
Как узнать, когда игрок сделал страйк или спэр, если количество бросков во фрейме не задано?
Re: Страйк и спэр
Posted by Hawook 4 Jun 2016 15:52
My code:
#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n,i,len,max=0,min=0;
    int ball[10];
    len=sizeof(ball)/sizeof(int);
    for(i=0;i<len;i++){
        scanf("%d",&ball[i]);
        min+=ball[i];
    }
    for(i=0;i<len;i++){
        n=ball[i];
        max+=n;
        if((n==10)&& (ball[i+1]==10) && (i+1<len)){
            max+=ball[i+1];
            max+=ball[i+2];
        }
        else if((n==10) && (ball[i+1]<10) && (i+1<len)) max+=ball[i+1];
        else if((i+1==len) && (n==10))max+=20;
    }
    printf("%d %d",min,max);
    return 0;
}
Wrong answer in test №17
Re: Страйк и спэр
Posted by 👑TIMOFEY👑 26 Aug 2022 15:04
нужной найти максимум и минимум