UVA 12403 - Save Setu

UVA Sep 1, 2020

Problem PDF

Solution:

#include 
#include 

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
        printf ("%d\n", s);
    }

    return 0;

}
https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/12403/12403.cpp

Tags

Great! You've successfully subscribed.
Great! Next, complete checkout for full access.
Welcome back! You've successfully signed in.
Success! Your account is fully activated, you now have access to all content.