duruozi 发表于 2020-5-24 17:56:49

0.100次

1。11次

2。a,b,c

3.

4。

动手

0。

#include <stdio.h>

#include <math.h>

int main()

{

int year = 1;

int cost = 10000;

float d_interest=0.1;

float f_interest=0.05;

float d_total = 10000;

float f_total = 10000;

while(d_total>= f_total)

{

d_total = cost * (1+d_interest*year);

f_total = (pow((1+f_interest),year))*cost;

printf("第%d年,单利:%.2f,复利:%.2f\n",year,d_total,f_total);

year = year+1;

}

return 0;

}

1。

#include <stdio.h>

#include <math.h>

int main()

{

int year = 1;

float capital = 4000000;//本金

float interest=0.08; //利息

int expence = 500000;//每年支出

while(capital>expence)

{

capital = capital*(1+interest)-expence;

printf("%d年后,资产:%.2f\n",year,capital);

year = year+1;

}

return 0;

}

3。2的24次方

tl_tl 发表于 2020-5-24 21:48:16

aa

李小鱼学c 发表于 2020-5-25 12:37:59

1

nengneng2020 发表于 2020-5-25 13:14:07

upup

神秘小帅哥 发表于 2020-5-25 18:02:21

0.10个
1.10个
2.c b a
3.a=13 b=5 c=9
4.if (x>=0){
z=x
}else{
z=-x
}
5.A if(size>12){
      bill=cost*flag;
}
B
if(ibex>14){
sheds=3;
}
C
readin: scanf("%d",&score);
if(score<0){
      printf("count = %d\n",count);
}

grant1944 发表于 2020-5-26 14:14:04

100次

超超然也 发表于 2020-5-26 16:11:50

1

meihua 发表于 2020-5-27 10:03:57

太难了,——。——看看答案

梦新小生 发表于 2020-5-27 13:12:43

加油

Yodaa 发表于 2020-5-27 13:29:26

甲鱼辛苦

jizhigou 发表于 2020-5-27 14:23:14

8192

15186338930 发表于 2020-5-27 20:18:18

看看

烧鸡 发表于 2020-5-27 22:41:49

0.100次
1.0次 0次不对就10次
2.a, b, c
3.b=4, c=9,a=13
4.z= a > 0 ? a: -a;
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:
scanf("%d", &score);
if (score < 0)
{
printf("count - %d\n", count);
}
else
{
count++;
continue;
}

展展 发表于 2020-5-28 01:13:17

参考答案

AstralisDe 发表于 2020-5-29 14:55:14

ck

fanicky 发表于 2020-5-29 16:38:20

查看参考答案

fuze11 发表于 2020-5-29 19:30:24

1

毛血旺 发表于 2020-5-30 07:39:59

h

想飞的洋洋洋 发表于 2020-5-30 10:04:59

1

陈星星 发表于 2020-5-30 20:08:59

查看参考答案
页: 98 99 100 101 102 103 104 105 106 107 [108] 109 110 111 112 113 114 115 116 117
查看完整版本: S1E16:拾遗 | 课后测试题及答案