当前学科:C++语言程序设计(高起专)
  • 题目: 问答题
    43.  (问答题)

    请将以下程序的运行结果写在右侧空白处。

    #include <stdio.h>

    swap(int a,int B、

    {

    int temp;

    temp=a;

    a=b;

    b=temp;

    }

    main()

    {

    int x=7,y=11;

    printf(x=%d,\ty=%d\n,x,y);

    printf(swapped:\n);

    swap(x,y);

    printf(x=%d,\ty=%d\n,x,y);

    }

     

    (本题10.0分)

      答案: <查看本题扣1积分>

      查看答案

      答案不对?请尝试站内搜索