#include <stdio.h>
int r(int a,int b){
return (2*(a+b));
}
int s(int a,int b){
return (a*b);
}
int main(){
int a;
int b;
int r(int a,int b);
int r(int a,int b)=100;
a=2*b;
printf("%d,%d",a,b);
reurn 0;
}
——————————————————————————
我知道这样的函数是有问题的,但是这个题目究竟要怎么编写呢?求老师同学帮助!!
1 回答
weirdguy
TA贡献8条经验 获得超3个赞
首先知道长方形的周长 那么他的面积可能性就是从边长1开始到周长的一半,所以可以用循环来实现所有可能性
#include "stdio.h"
void fun(int c)
{
int i = 1;
for (i; i <= c / 2; i++)
{
printf("%d\n",i*(c-i));
}
}
void main()
{
fun(20);
system("pause");
}
- 1 回答
- 0 关注
- 2476 浏览
添加回答
举报
0/150
提交
取消