Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
53998 | 王奕朝 | 向下取整 | C++ | Accepted | 2 MS | 268 KB | 215 | 2023-07-19 13:15:43 |
#include<iostream> #include<cstdio> using namespace std; int main() { double i; cin>>i; int xxqz(double x); printf("%d",xxqz(i)); } double xxqz(double x) { int n; n=(int)x; return(n); }