Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
67438 冯诚阳 向下取整 C++ Accepted 1 MS 268 KB 142 2024-03-16 15:33:20

Tests(2/2):


Code:

#include<iostream> #include<cmath> using namespace std; int main() { float x; cin>>x; cout<<floor(x); return 0; }