如何正确使用 if else 语句和 while 循环与 C 中的子进程

How to properly use if else statements and while loops with a child process in C

我是 C 的新手,我一直在尝试创建一个程序,该程序接受用户输入的整数,根据数字是偶数还是奇数来生成一个序列。

n / 2 如果 n 是偶数

3 * n + 1 如果 n 是奇数

将计算一个新数字,直到序列达到 1。例如,如果用户输入 35:

35、106、53、160、80、40、20、10、5、16、8、4、2、1

由于某种原因,我的代码在子进程的扫描语句后不起作用。我在下面留下了我的代码和示例输出:

代码:

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>

int main()
{
pid_t pid;

    int i = 0;
    int j = 0;
    /* fork a child process */
    pid = fork();


    if (pid < 0) { /* error occurred */
        fprintf(stderr, "Fork Failed\n");
        return 1;
    }
    else if (pid == 0) { /* child process */
        printf("I am the child %d\n",pid);


    printf("Enter a value: \n");
    scanf("%d", i);

    while (i < 0) {
        printf("%d is not a positive integer. Please try again.\n", i);
        printf("Enter a value: \n");
        scanf("%d", i);

    }
    // can add a print i here
    while (i != 1) {

        if (i % 2 == 0) { // if the inputted number is even  
            j = i / 2;      
        }

        else {
            j = 3 * i + 1;
        }
    printf("%d", j);    
    } 

}


    else { /* parent process */
        /* parent will wait for the child to complete */
        printf("I am the parent %d\n",pid);
        wait(NULL); // wait(NULL) will wait for the child process to complete and takes the status code of the child process as a parameter

        printf("Child Complete\n");
    }

    return 0;
}

我在 Linux (Debian) 的终端上得到的输出:

oscreader@OSC:~/osc9e-src/ch3$ gcc newproc-posix.c 
oscreader@OSC:~/osc9e-src/ch3$ ./a.out
I am the parent 16040
I am the child 0
Enter a value: 
10
Child Complete
oscreader@OSC:~/osc9e-src/ch3$

正在将评论转化为半连贯的答案。

您对 scanf() 的调用需要一个指针参数;你给它一个整数参数。使用 scanf("%d", &i); — 在测试结果之前检查 scanf() returns 1 是个好主意。

我的编译器告诉我你的错误。为什么你的编译器不这样做呢?确保启用所有可能的警告!您的评论表明您正在使用 gcc(或者可能是 clang)——我经常编译:

gcc -std=c11 -O3 -g -Werror -Wall -Wextra -Wstrict-prototypes …

确实,对于来自 SO 的代码,我添加了 -Wold-style-declarations -Wold-style-definitions 以确保正确声明和定义函数。添加 -pedantic 以避免意外使用 GCC 扩展通常是个好主意。

在循环中,您不需要 j — 您应该更改并打印 i

cz17.c

#include <stdio.h>
#include <sys/wait.h>
#include <unistd.h>

int main(void)
{
    int i = 0;
    pid_t pid = fork();

    if (pid < 0)
    {
        fprintf(stderr, "Fork Failed\n");
        return 1;
    }
    else if (pid == 0)
    {
        printf("I am the child %d\n", pid);

        printf("Enter a value: \n");
        if (scanf("%d", &i) != 1)
        {
            fprintf(stderr, "failed to read an integer\n");
            return 1;
        }

        while (i <= 0 || i > 1000000)
        {
            printf("value %d out of range 1..1000000. Try again.\n", i);
            printf("Enter a value: \n");
            if (scanf("%d", &i) != 1)
            {
                fprintf(stderr, "failed to read an integer\n");
                return 1;
            }
        }

        while (i != 1)
        {
            if (i % 2 == 0)
            {
                i = i / 2;
            }
            else
            {
                i = 3 * i + 1;
            }
            printf(" %d", i);
            fflush(stdout);
        }
        putchar('\n');
    }
    else
    {
        printf("I am the parent of %d\n", pid);
        int status;
        int corpse = wait(&status);
        printf("Child Complete (%d - 0x%.4X)\n", corpse, status);
    }

    return 0;
}

编译:

gcc -O3 -g -std=c11 -Wall -Wextra -Werror -Wmissing-prototypes -Wstrict-prototypes cz17.c -o cz17 

示例输出:

$ cz17
I am the parent of 41838
I am the child 0
Enter a value: 
2346
 1173 3520 1760 880 440 220 110 55 166 83 250 125 376 188 94 47 142 71 214 107 322 161 484 242 121 364 182 91 274 137 412 206 103 310 155 466 233 700 350 175 526 263 790 395 1186 593 1780 890 445 1336 668 334 167 502 251 754 377 1132 566 283 850 425 1276 638 319 958 479 1438 719 2158 1079 3238 1619 4858 2429 7288 3644 1822 911 2734 1367 4102 2051 6154 3077 9232 4616 2308 1154 577 1732 866 433 1300 650 325 976 488 244 122 61 184 92 46 23 70 35 106 53 160 80 40 20 10 5 16 8 4 2 1
Child Complete (41838 - 0x0000)
$