这是第一个博客hhh,萌新一枚话不多说直接上代码
还有题目
#include <bits/stdc++.h>//没看错万能头文件,我是个懒狗 ,虽然这题没必要。
using namespace std;
int main()
{
int n;
cin>>n;
int t=1,sn=(t+1)*t/2;
//下面的循环是用来确定行数的,我是把它当做一个倒三角来进行的
while(sn<n){
sn=(t+1)*t/2;
t++;
}
int temp=t-1;
//计算该行中还有多少个数字;
int tot=n-((temp-1)*temp/2);
//由倒三角,得出奇偶规律得答案;
if(t%2==1){
cout<<tot<<"/"<<t-tot<<endl;
}
else{
cout<<t-tot<<"/"<<tot<<endl;
}
//其实做的好麻烦见谅啦
return 0;
}
简单草率的第一篇