algorithm
dovelet - spot of light/spot
블루건
2016. 7. 15. 20:49
dovelet - spot of light/spot
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <iostream> using namespace std; int main() { float d, p; cin >> d >> p; cout.precision(3); cout << fixed << d * (-p / 100) << endl; return 0; } | cs |