摘要: #include int main() { printf("201983270528"); return 0; } /*求两个整数的乘积*/ #include int product (int,int); int main (void) { int x,y,s; scanf("%d%d",&x,&y); s = product(x,y); ... 阅读全文
posted @ 2019-10-20 15:30 Squidward-Yu 阅读(129) 评论(1) 推荐(0)