Friday, March 10, 2017

URI problem 1017 solution in C | (Fuel Spent)



Find the solution in the link below:

https://codespathshala.com/uri-1017/

1 comment:

  1. #include
    int main(void)
    {
    int t,s,r;
    scanf("%d %d",&t,&s);
    r = (t*s);
    printf("%.3f",(r/12.0));

    return 0;
    }

    ReplyDelete