|
|
back to boardWhat c++ compile is used on Timus? CE Posted by And IV 7 Mar 2008 01:54 I use G++. #include <iostream> #include <math.h> using namespace std; int n; int main() {
cin>>n; cout<<floor(____________); return 0; } Re: What c++ compile is used on Timus? CE Read the FAQ part. ANY function which is included in math.h MUST get DOUBLE: cout<<floor((double)_____); |
|
|