3 条题解

  • 1
    @ 2025-4-6 16:30:31

    这才是真正的题解!!!

    #include<iostream>
    using namespace std;
    int main()
    {
        int a=20,b=22,t;
        t=a;
        a=b;
        b=t;
    cout<<"a="<<a<<endl;
    cout<<"b="<<b;	
    return 0;
    }
    • 0
      @ 2025-10-18 15:02:09

      #include<stdio.h> int main() { int a=20, b=22; int t;

      t=a;
      a=b;
      b=t;
      
      printf("a=%d\nb=%d",a,b);
      
      return 0;
      

      }

      • 0
        @ 2025-3-31 12:53:11

        guyffrffyg

        • @ 2025-4-6 16:25:12

          不能乱发题解!!!

        • @ 2025-4-6 16:26:04

          **不能乱发题解!!!!! </u>

      • 1

      信息

      ID
      2
      时间
      1000ms
      内存
      64MiB
      难度
      3
      标签
      递交数
      78
      已通过
      42
      上传者