16
1
123
0
00.0
答案
..
1
0.100个
1.10个
2.a,b,c
3.a = 14,b = 4,c = 9
4.x > 0 ? z = x : z = - x
5.Aif (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
bill = cost * flag;
Bif (ibex > 14)
{
sheds = 3;
}
sheds = 2;
help = 2 * sheds;
C
if (score < 0)
{
printf("count = %d\n", count);
}
count++;
scanf("%d", &score);
df
已完成
a
哈哈
1
1
答案
1
0.9个
1.0个
2.a,b,c
3.b=4 c=8 a=14
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;
}
sheds = 2;
help = 2 * sheds;
C.if(score < 0)
{
printf("count = %d\n", count);
}
count++;
scanf("%d", &score);
3