1
1
0.10次
1.10次
2.int c=5,b=c,a=b;
3.a=(3,4,9,14)b=3c=9
4.unsigned int = x; int = z; z=x;
5.
111
1
棒棒棒
注册迟了!!!
看看
{:5_90:}
.
朕想知道
打卡
0 10 个 A
1 11 个B
2 a 是l-value
3a= 9 + 5 =14b = 5c= 9
4 z=x>=0?x:(-x)
5if (size > 12)
{
cost = cost * 1.05;
flag = 2;
}
else
{
bill = cost * flag;
}
if (ibex > 14)
{
sheds = 3;
}
else
{
sheds = 2;
help = 2 * sheds;
}
if (score < 0)
{
printf("count = %\n", count);
}
else
{
count++;
scanf("%d", &score);
}
0.10
1.0
2.a,b,c
3.a=14,b=5,c=9
4.x > 0 ? z = x: z = -x;
ilovefishc
1
前来学习
{:10_277:}
#include <stdio.h>
#include <math.h>
int main()
{
double pi = 0.0, i = 1.0, k = 1.0, t = 1.0;
while (fabs(t) > 1e-8)
{
pi += t; //pi = pi + t;
i = - i;
k += 2.0;
t = k / i;
}
pi *= 4;
printf("pi = %f\n",pi);
return 0;
}
21