解题:Cantor 表
2023-08-09 00:42:41
发布于:广东
18阅读
0回复
0点赞
空降坐标:CP002760
来源:NOIP1999 普及组
请看代码
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,s=0,k=0;
cin>>n;
do
{
k++;
s+=k;
}while(s<n);
if(k%2==0)
{
cout<<k+n-s<<'/'<<s-n+1;
}
else
{
cout<<s-n+1<<'/'<<k+n-s;
}
}
这里空空如也
有帮助,赞一个