Initiate Luogu

This commit is contained in:
e2hang
2025-08-13 21:38:49 +08:00
parent ab606e0cbd
commit 8bfe9f31f3
22 changed files with 735 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main(){
double t;
int n;
scanf("%lf %d",&t,&n);
t/=n;
n*=2;
printf("%.3f\n%d",t,n);
return 0;
}