{:9_241:}
6666666
朕想知道
0.10次
1.0次
2.a
3.a=14,b=5,c=9
4.if(x>=0)
{
z=x;
}
else
{
z=-x
}
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.
if (score < 0)
{
printf("count = %d\n", count);
}
else
{
count++;
scanf("%d", &score);
}
1
{:7_131:}
1
oo
0、10
1、10
2、a、b、c
3、a=3
c=3+5=8+1=9
b=3+1=4+1=5
4、z = x >= 0 ? x : -x;
5、A:if (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
else
{
bill = cost * flag;
}
5、B:
if (ibex > 14)
{
sheds = 3;
}
else
{
sheds = 2;
help = 2 * sheds;
}
5、C:
if(1)
{
scanf("%d", &score);
if (score < 0)
{
printf("count = %d\n", count);
}
else
{
count++;
}
}
123
,
666666666666666
111
就看看
.
{:5_90:}
回复
1
谢谢
100 10 8 3 8