Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
52761 杨宜炜 向下取整 C++ Accepted 1 MS 268 KB 131 2023-07-15 16:14:50

Tests(2/2):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ double n; cin>>n; int a; a=floor(n); cout<<a; }