Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
115504 胡海峰老师 02三个数相乘 C++ Accepted 1 MS 276 KB 123 2025-03-30 20:06:48

Tests(10/10):


Code:

#include <iostream> int main(){ int a,b,c; std::cin>>a>>b>>c; int d = a*b*c; std::cout<< d; return 0; }