有以下程序: #include<stdio.h> int fun(int n) { if(n==1) return 1; else return(n+fun(n-1)); } main

admin2021-07-09  30

问题 有以下程序:
    #include<stdio.h>
    int fun(int n)
    {
    if(n==1)
    return 1;
    else
    return(n+fun(n-1));
    }
    main()
    {
    int x;
    scanf(’’%d’’,&x);
    x=fun(x);
    printf(’%d\n’’,x);
    }
    执行程序时,给变量x输入10,程序运行后的输出结果是(    )。

选项 A、0
B、2
C、3
D、5

答案B

解析 程序首先给字符数组s[]赋值为“012xy”,fnr循环语句的功能是遍历字符串,通过if条件语句对字符串中的小写字母计数,在符串中小写字母为2个,即n=2。因此B选项正确。
转载请注明原文地址:https://jikaoti.com/ti/c9z0FFFM
0

最新回复(0)