Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
41053 | WZH | 求三位数各数位中最大值 | C++ | Compile Error | 0 MS | 0 KB | 203 | 2024-02-19 09:31:35 |
#include<iostream> using namespace std; int gcd(int a,int b){ if(b==0) return a; return gcb(b,a%b); } int main() { int n,m; cin>>m>>n; int u=gcb(m,n); cout<<u<<","<<m*n/u; return 0; }