首先输入 a 和 b,随后定义一个 t 等于 b/a。
注意:都要用 double 类型的,还要保留三位小数,可以用 printf 来输出。
AC CODE:
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
double x,y;
cin>>x>>y;
double t = (y/x);
printf("%.3f\n",t);
return 0;
}
首先输入 a 和 b,随后定义一个 t 等于 b/a。
注意:都要用 double 类型的,还要保留三位小数,可以用 printf 来输出。
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
double x,y;
cin>>x>>y;
double t = (y/x);
printf("%.3f\n",t);
return 0;
}