Friday, June 1, 2018

UVA - 12403 .cpp file

#include <stdio.h>
#include <string.h>

int main ()
{
    int t,s=0,d=0;
    char a [100];
    scanf ("%d", &t);
    while ( t--)
    {
        scanf ("%s", a);
        if (strcmp (a, "donate")==0)
        {
            scanf ("%d", &d);
            s += d;
        }
        else if(strcmp(a,"report")==0)
            printf ("%d\n", s);
    }

    return 0;

}

No comments:

Post a Comment