編程題
請(qǐng)編寫函數(shù)fun,其功能是:將兩個(gè)兩位數(shù)的正整數(shù)a、b合并形成一個(gè)整數(shù)放在c中。合并的方式是:將a數(shù)的十位和個(gè)位數(shù)依次放在c數(shù)的百位和個(gè)位上,b數(shù)的十位和個(gè)位數(shù)依次放在c數(shù)的十位和千位上。
例如,當(dāng)a=45,b=12,調(diào)用該函數(shù)后,c=2415。
請(qǐng)勿改動(dòng)主函數(shù)main和其他函數(shù)中的任何內(nèi)容,僅在函數(shù)fun的花括號(hào)中填入所編寫的若干語句。
#include
#include
void fun (int a, int b, long *c )
{
}
main ()
{
int a, b; 考試大論壇
long c;
FILE *out ;
printf ("Input a, b;");
scanf ("%d%d", &a, &b);
fun (a, b, &c);
printf ("The result is : %ld\n", c);
out=fopen ("out.dat","w");
for (a = 20; a < 50; a+=3)
{
fun(a, 109-a, &c);
fprintf(out, "%ld\n", c);
}
fclose (out );
}
參考答案:
void fun (int a, int b, long *c)
{
*c=(b%10)1000+(a/10)*100+(b/10)*10+a%10;
}