Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
24112 老方 简单四则运算 C++ 无测评数据 0 MS 0 KB 195 2023-08-05 09:53:51

Tests(0/0):


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