Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
112659 胡海峰老师 02三个数相乘 C Accepted 1 MS 204 KB 228 2025-03-09 20:45:23

Tests(10/10):


Code:

#include <stdio.h> int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int res= a*b*c; printf("%d",res); // a*b*c 表达式 expression return 0; } /* CTRL + A CTRL + C CTRL + V */