Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107496 蔡书涵 简单计算 C++ Accepted 1 MS 264 KB 143 2025-01-18 09:15:57

Tests(1/1):


Code:

#include<iostream> using namespace std; int main() { int a,b,c,d,e; a=1; b=2; c=3; d=4; e=5; cout<<a*b*c*d*e<<endl; return 0; }