Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112660 施宸雨 02三个数相乘 C Accepted 1 MS 196 KB 120 2025-03-09 20:45:42

Tests(10/10):


Code:

#include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d",a*b*c); return 0; }