upup
0.10个
1.10个
2.c b a
3.a=13 b=5 c=9
4.if (x>=0){
z=x
}else{
z=-x
}
5.A if(size>12){
bill=cost*flag;
}
B
if(ibex>14){
sheds=3;
}
C
readin: scanf("%d",&score);
if(score<0){
printf("count = %d\n",count);
}
100次
1
太难了,——。——看看答案
加油
甲鱼辛苦
8192
看看
0.100次
1.0次 0次不对就10次
2.a, b, c
3.b=4, c=9,a=13
4.z= a > 0 ? a: -a;
5.A
if (size > 12)
{
cost = cost *1.05;
flag = 2;
}
else
{
bill = cost *flag;
}
B:
if (ibex > 14)
{
sheds = 3;
}
else
{
sheds = 2;
}
help = 2*sheds;
C:
scanf("%d", &score);
if (score < 0)
{
printf("count - %d\n", count);
}
else
{
count++;
continue;
}
参考答案
ck
查看参考答案
1
h
1
查看参考答案
0. 10个
1. 10个
2. a, b, c
3. 16, 6, 10
4. x > 0 ? x : -x
5.
A.
if (size > 12)
cost = cost * 1.05;
flag = 2;
bill = cost * flag;
B.
if (ibex > 14)
sheds = 3;
sheds = 2;
help = 2 * sheds;
C.
if (score < 0)
printf("count = %d\n", count);
count++;
scanf("%d", &score);
让我康康
真的好