建议办掉这篇题解

P1888 三角函数

@[_•́へ•́╬_](/user/90693) @[cn_ryh](/user/458193) @[Register_int](/user/406941)
by 蟋蟀喵~~ @ 2023-08-29 12:59:56


后来的管理不用翻了,要被办的题解在这。 [题解 Link](https://www.luogu.com.cn/blog/222747/p1888-san-jiao-han-shuo-ti-xie-lve-sha-diao-post)
by cn_ryh @ 2023-08-29 13:11:37


@[Huge_Brain](/user/380639) ok Killed
by cn_ryh @ 2023-08-29 13:36:07


哇cn_ryh有tag了,tag+勾+badge……
by Special_Tony @ 2023-09-28 10:57:49


全绿,无红 ```cpp #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f; cin>>a>>b>>c; for(int i=100;i>=1;i--){ if(a%i==0&&b%i==0&&c%i==0){ d=a/i; e=b/i; f=c/i; cout<<min(d,min(e,f))<<"/"<<max(d,max(e,f)); return 0; } } cout<<min(a,min(b,c))<<"/"<<max(a,max(b,c)); return 0; } ```
by heheya @ 2023-10-17 12:35:28


|