xx
0.10
1.10
2.a/b/c
3.14.5.9
4.z = x>= 0? x:-x
5.if (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
bill = cost * flag;
if (ibex > 14)
{
sheds = 3;
}
sheds = 2;
help = 2 * sheds;
if (score < 0)
{
printf("count = %d\n", count);
}
count++;
scanf("%d", &score);
给朕看
answer
1
是
对答案
1
1
1
h
1
{:10_334:}
0.10个
1.10个
2.c=5,b=c,a=b
3.a=14,c=9,b=5
4.z=(x>=0)?x:-x
5. if (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
bill = cost * flag;
if (ibex > 14)
{
sheds = 3;
}
else
{sheds = 2;}
help = 2 * sheds;
scanf("%d", &score);
while(score >=0)
{
count++;
scanf("%d", &score);
}
printf("count = %d\n", count);
123
1
0:10个A
1:10个B
2:C=5
3:a=9,b=5,c4
4:x>=0?z=x:z=-x
5:
朕想知道
0.10个
1.1个都不打印
2.a,b,c
3.a = 14,b = 5, c = 9
4.z = x > 0 ? x : -x
5.
A.
if (size > 12) {
cost *= 1.05;
flag = 2;
}
bill = cost * flag;
B.
if (ibex > 14) {
sheds = 3;
}
else {
sheds = 2;
}
help = 2 * sheds;
C.
do {
scanf("%d", &score);
}
while ((score = getchar()) != '\n') {
if (score < 0) {
printf("count = %d\n", count);
}
count++;
}
答案