Toggle navigation
万里ACM
F.A.Qs
Web Board
ProblemSet
Source/Category
Status
Ranklist
Contest
[
ProblemSet
Status
Ranklist
OI Ranklist
Statistics
]
Login
Problem A: 函数的指针参数:求解鸡兔问题
Problem A: 函数的指针参数:求解鸡兔问题
Time Limit:
1 Sec
Memory Limit:
128 MB
Submit:
113
Solved:
97
[
Submit
] [
Status
] [
Web Board
] [Creator:
]
Description
使用自定义函数calc(int h, int f,int *c,int *r); 求解鸡兔问题
函数的参数:头的总数量h与脚的总数量f,通过两个指针参数获得计算结果
Sample Input
Copy
5 16
Sample Output
Copy
2 3
HINT
用于测试函数的源程序:
#include<stdio.h>
int main()
{
int h,f,c,r;
scanf("%d%d",&h,&f);
calc(h,f,&c,&r);
printf("%d %d\n", c, r );
}