• 首页>百科 > 百科
  • 继续教育学院C语言程序设计考试试题答案

    四、(1)

    i=9,j=10,m=8,n=10.

    (2) a,97

    a,97

    五、

    #include <stdio.h>

    #include <stdlib.h>

    int main()

    {

    int a,b;

    scanf("%d %d",&a,&b);

    if (a>b)

    printf("%d",a);

    else

    printf("%d",b);

    system("pause");

    return 0;

    }更多追问追答追问

    三大题第六题会么

    追答

    6。

    b+=a意思为b=b+a;答案是3。

    ASCII 码中A为 65,putchar意为输出。

    所以b=a+32;答案是97。

    才看到,不好意思。

    发表评论

    登录后才能评论