1 条题解

  • 0
    @ 2021-6-15 12:53:12

    C :

    #include<stdio.h>
    main()
    {
    	int a=10,b=19;
    	printf("a=%d%%,b=%d%%",a,b);
    }
    

    C++ :

    #include<iostream>
    using namespace std;
    int main()
    {
      cout << "a=10%,b=19%";
      return 0;
    }
    
    
    • 1

    【验证型】第4章:键盘输入和屏幕输出 简单的输出1

    信息

    ID
    578
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者