2 条题解

  • 0
    @ 2024-12-5 18:11:31
    #include<stdio.h>
    int main(void)
    {
    
        int a, b;
        scanf("%d%d",&a,&b);
        printf("%d",a/b);
        return 0;
    }
    • 0
      @ 2024-7-25 12:27:11

      参考答案:

      #include<iostream>
      using namespace std;
      int main()
      {
          int a, b;
          cin >> a >> b;
          cout << a / b << endl;
      
          return 0;
      }
      
      • 1

      信息

      ID
      14
      时间
      1000ms
      内存
      256MiB
      难度
      9
      标签
      递交数
      7
      已通过
      6
      上传者