标签:style class div size c t string sp tab ble int
1 5 10 15 20
200.00
#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
using
namespace std;
int main(int argc, char* argv[])
{
int
m;
cin>>m;
while(m--)
{
int n,x,y,z;
scanf("%d%d%d%d",&n,&x,&y,&z);
printf("%.2f\n",(float)(n*x*1.0/(y-x)*z));
}
return 0;
}
标签:style class div size c t string sp tab ble int
原文地址:http://www.cnblogs.com/52Cyan/p/3695637.html