Run ID:112659

提交时间:2025-03-09 20:45:23

#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 */