Tuesday, 30 December 2014

UVA 10693 - Traffic Volume(cpp file)

Problem Type : Math



#include<stdio.h>
#include<math.h>
int main()
{
    long int l ,f;
    double v,volume,s;
    while(scanf("%ld %ld",&l,&f)==2)
    {
            if(l==0 && f==0)
                break;
         v= sqrt(2*l*f);

         volume = (v*3600)/(2*l);
         printf("%.8lf %.8lf\n",v,volume);
    }
    return 0;
}

No comments:

Post a Comment

ট্রিগার এর মাধ্যমে ডাটা ইনসার্ট - insert data using Database Trigger (Mysql)

সর্বপ্রথম আমরা প্রবলেমটা বুঝিঃ আমি একটা টেবিলের একটা কলামের ভ্যালুর উপর ডিপেন্ড করে আরেকটা কলামে ডাটা insert করব । এই কাজটা ট্রি...