C语言编程?

2025-05-24 09:04:31
推荐回答(1个)
回答1:

void comb(int a,int b,int *c)

{    *c=(a % 10) * 1000 + (a / 10) * 10 + b / 10 + (b % 10) * 100;

}