Leaf59 @ 2024-07-27 11:59:31
#include<bits/stdc++.h>
using namespace std;
int n,k;
double a,b,c,d;
int main(){
cin>>n>>k;
for(int i=1;i<=n;i++){
if(i%k==0){
a+=i;
c++;}
else {
b+=i;
d++;}
}
cout<<a/c*1.0<<" "<<b/d/1.0;
return 0;
}
哪里有问题?
by SBGL @ 2024-09-08 09:16:31
@llhhss 我的头文件是复制粘贴过来的...
by llhhss @ 2024-09-08 11:48:36
@SBGL 这个库不包含在洛谷