c语言结果是什么求解释
#include<stdio.h>#include<math.h>main(){intx=0,y,z=0;while(x<=10){y=3*sqrt(x);if(x<5)...
#include <stdio.h>
#include <math.h>
main() {
int x = 0, y, z = 0;
while (x <= 10) {
y = 3*sqrt(x);
if (x < 5)
if (y > 5) printf("$ ");
else
printf("£ ");
printf("%d\n", y);
z += y;
++x;
}
printf("%d\n", z);
}
Success time: 0 memory: 15240 signal:0这是答案,求解什么意思,怎么来的
£ 0
£ 3
£ 4
£ 5
$ 6
6
7
7
8
9
9
64 展开
#include <math.h>
main() {
int x = 0, y, z = 0;
while (x <= 10) {
y = 3*sqrt(x);
if (x < 5)
if (y > 5) printf("$ ");
else
printf("£ ");
printf("%d\n", y);
z += y;
++x;
}
printf("%d\n", z);
}
Success time: 0 memory: 15240 signal:0这是答案,求解什么意思,怎么来的
£ 0
£ 3
£ 4
£ 5
$ 6
6
7
7
8
9
9
64 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询