2 条题解

  • 0
    @ 2026-8-16 8:54:03
    #include<bits/stdc++.h>
    using namespace std;
    int main(){ //
    	int a,b;
    	cin>>a>>b;
    	cout<<setw(5)<<a*b;
        return 0;
    }
    
    
    • 0
      @ 2026-8-15 11:25:22
      #include<bits/stdc++.h>
      using namespace std;
      int main(){ //
      	int a,b;
      	cin>>a>>b;
      	printf("%5d",a*b);
          return 0;
      }
      
      
      • 1

      信息

      ID
      2118
      时间
      1000ms
      内存
      256MiB
      难度
      9
      标签
      (无)
      递交数
      7
      已通过
      5
      上传者