5 条题解

  • 1
    @ 2023-8-8 17:17:35

    加油!!!!!!

    • 0
      @ 2022-7-26 10:41:54

      嗨害嗨 这里是 菜鸽K。 本题是基础的整数除法。 因为int自动保留整数 所以在cout直接输出就刑。 不多烁了 上代码。

      #include <bits/stdc++.h>
      using namespace std;
      long long a,b;
      int main()
      {
      	cin>>a>>b;
      	cout<<a/b;
      	return 0;
      }
      

      拜拜友子我们下一题见。

      • -2
        @ 2022-11-3 20:35:07

        这题不多说,直接上代码。

        #include <bits/stdc++.h>
        using namespace std;
        int a,b;
        int main(){
        	cin>>a>>b;
        	cout<<a/b;
        	return 0;
        }
        
      • -3
        @ 2022-7-21 14:47:21

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

        • -5
          @ 2022-11-9 13:25:10

          #include<bits/stdc++.h> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a/b; return 0; }

        • 1

        信息

        ID
        3
        时间
        1000ms
        内存
        256MiB
        难度
        2
        标签
        递交数
        466
        已通过
        294
        上传者