2 条题解

  • 0
    @ 2025-8-17 9:55:08
    n,m=map(int,input().split())
    remains=n-m*0.8
    print('%.2f' %remains)
    
    • 0
      @ 2025-3-27 9:17:36
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          double n,m,a;
          cin>>n>>m;
          a=n-m*0.8;
          printf("%0.2lf",a);
          return 0;
      }
      
      • 1

      信息

      ID
      350
      时间
      1000ms
      内存
      64MiB
      难度
      4
      标签
      递交数
      90
      已通过
      45
      上传者