0.10个
1.0个
2.a
3.10 4 4
4.
#include <stdio.h>
int main()
{
int x, z;
scanf("%d",&x);
z = x >= 0 ? x : -x ;
printf("%d",z);
return 0;
}
5.
A
if (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
else
bill = cost * flag;
B
if (ibex > 14)
{
sheds = 3;
}
if (sheds = 2)
{
help = 2 * sheds;
}
C
if (score < 0)
{
printf("count = %d\n", count );
}
count++;
else
readin : scanf("%d",&score);
{:10_254:}
乌拉
1
1
答案
1
1
来啦
看看答案
1
答案
1
1
好想要
100
0
5 5 4
abc
z=x<0?-x:x;
来学习
{:5_105:}
1
本帖最后由 澪浠澜 于 2023-3-18 19:06 编辑
#include <stdio.h>
int main()
{
int i=1,j=2,z=2,a;
for(a=3;a<=24;a++)
{
j=z;
z=j+i;
i=j;
}
printf("两年后可以繁殖出%d对兔子",j);
return 0;
}