要怎么做,谢谢
下面这个哪里可以修改
#include<bits/stdc++.h>
using namespace std;
int main()
{
double n;
int d,k;
cin>>n;
d=n;
if((n-d)<1&&(n-d)!=0) k=d+1;
if(n<=1)
{
cout<<8;
}
else if(n>1&&n<=6)
{
cout<<8+(k-1)*15;
}
else if(k>7)
{
cout<<8+75+(k-7)*20;
}
return 0;
}