2 条题解

  • 0
    @ 2026-5-14 22:15:13
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        double a,b;
        cin >> a >> b;
        cout<<"s="<<a*b/2;
        return 0;
    }
    
    • 0
      @ 2026-1-25 14:29:03

      #include <bits/stdc++.h>

      using namespace std;

      int main() {

      double a, b;
      
      cin >> a >> b;
      
      cout <<"s=" <<a *b / 2;
      
      return 0;
      

      }

      • 1

      信息

      ID
      326
      时间
      1000ms
      内存
      64MiB
      难度
      7
      标签
      递交数
      1067
      已通过
      217
      上传者