6 条题解

  • 1
    @ 2024-08-18 17:36:11

    啊,很久没见到这么简单的题了

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

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

    //我是对的!!!

  • 0
    @ 2022-07-01 14:27:02

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

  • 0

    #include<iostream>
    #include<cmath>
    using namespace std;
    const double PI=3.14159;
    int main(){
    long long h,r;
    cin >> h >> r;
    cout<<h*r;
    return 0;
    }

  • -1
    @ 2021-11-21 21:27:04

    #include <iostream>
    using namespace std;
    int main()
    {
    long long A,B;
    cin>>A>>B;
    cout<<A*B;
    return 0;
    }

  • -1

    @戴铖翔 遇事不决用long long
    #include<iostream>
    using namespace std;
    int main()
    {
    long long A,B;
    cin>>A>>B;
    cout<<A*B;
    return 0;
    }

  • 1

信息

ID
2328
难度
7
分类
(无)
标签
递交数
921
已通过
210
通过率
23%
被复制
4
上传者