理想是不打代码 发表于 2019-8-2 19:39:23

{:10_323:}

非黑莫白 发表于 2019-8-4 21:43:09

10
10
abc
b=5,c=9,a=14
x>0?z=x;:z=-x;
#include <stdio.h>

void main()
{
      double a=10000,b=10000;
      int c=0;
      while(a>=b){a+=10000*10/100;b+=b*5/100;c++;}
      printf("%d %.2f %.2f",c,a,b);

}

#include <stdio.h>

void main()
{
      double a=400;
      int c=0;
      while(a>0){
                a-=50;
                a=a+a*8/100;
                c++;
      }
      printf("%d\n",c);
}
#include <stdio.h>
#include <math.h>

void main()
{
      double a=1;
      double b;
      int c=-1;
      int d=0;
      while(fabs(1/a)>pow(10,-8))
      {
                b+=(1/a)*pow(c,d);
                d++;
                a+=2;

      }
      printf("%.7f",b);
}

z3315081 发表于 2019-8-5 04:46:08

answer

无敌卷二 发表于 2019-8-5 16:56:51

看答案

哈岁NB 发表于 2019-8-6 10:30:44

I love FishC.com!

circIe 发表于 2019-8-6 13:27:48

{:10_250:}

wqhh2 发表于 2019-8-7 15:25:47

我想看看看看看

内少帮主 发表于 2019-8-7 18:35:26

100, 10

hollyip 发表于 2019-8-8 13:49:58

#include <stdio.h>
#include <math.h>

int main()
{
        float PI=0, j=0, i=0;
        int fenmu = 1, count=0;
        do
        {       
                count ++;
                j = (float)1/fenmu;
                if (count%2==0)
                {
                        j = -j;
                }
                PI = PI + j;
                fenmu += 2;
                i = fabs(j);
                printf("%0.8f\n",i);
        }while (i>10^(-8));
        printf("PI = %f\n", PI);
        return 0;
}

xuanpeng123 发表于 2019-8-8 14:10:25

执行了goto语句之后,到达标签地点的程序执行完毕,还会回到goto向下执行嘛?还是在标签点向下执行啊?

9264Jue 发表于 2019-8-9 19:15:14

1

月下的云端 发表于 2019-8-9 20:40:21

10

钟人杰 发表于 2019-8-10 09:12:35

0. 100个
1. 0个 因为i++是先判断i的值再进行自增,所以不会进入循环?
2. l-value是a
3. a=1, b=6, c=10
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;
}
sheds = 2;
help = 2 * sheds;
C.
if (score < 0)
{
    printf("count = %d\n", count);
}
count ++;
scanf("%d", &score);

无敌大帅哥 发表于 2019-8-10 14:36:39

0.ch >= '0' && ch <= '9'
只有当输入为数字时,才会执行语句A。

1.B在执行到i=1的时候卡死

A能执行下去

for 语句和 while 语句执行过程的区别在于出现 continue 语句时。在 for 语句中,continue 语句跳过循环的剩余部分,直接回到调整部分。在 while 语句中,调整部分是循环体的一部分,因此 continue 语句会把它也跳过

2.4次
很多次(实际上我测试了一下是 1078 次),很多朋友回答 4 次,那是你想当然的把 i 看成整数了,注意这里是浮点数。

3.小于0或者字符 输入的值只要不是自然数,程序就能正常退出

4.1.0
3.6
4.6
4.6
5

fishlovedream 发表于 2019-8-10 21:04:55

拾遗

18997922349 发表于 2019-8-11 02:17:31

让我康康

RRRex 发表于 2019-8-11 15:27:55

kankan

唯伊堇 发表于 2019-8-12 16:38:00

ceshi

唯伊堇 发表于 2019-8-12 16:54:15

这个有点汇编语言的意思

Yuerbai 发表于 2019-8-12 19:19:21

朕想知道
页: 45 46 47 48 49 50 51 52 53 54 [55] 56 57 58 59 60 61 62 63 64
查看完整版本: S1E16:拾遗 | 课后测试题及答案