#include<cstdio> using namespace std; int main(){ float a=9.6*6,b=9.4*5,c=9.8*5; float x=(b+c-a)/4; printf("%5.2f",x); return 0; }
一本通2072;歌手大奖赛
于 2022-10-28 22:35:04 首次发布
#include<cstdio> using namespace std; int main(){ float a=9.6*6,b=9.4*5,c=9.8*5; float x=(b+c-a)/4; printf("%5.2f",x); return 0; }