摘要: 1 #include<stdio.h> 2 int product(int,int); 3 int main(void) 4 { 5 int x,y,s; 6 scanf("%d%d",&x,&y); 7 s = product(x,y); 8 printf("The mul is:%d",s); 阅读全文
posted @ 2019-03-22 23:42 24小科比 阅读(140) 评论(0) 推荐(0)