code/class/test1.cpp

12 lines
129 B
C++
Raw Normal View History

2024-10-26 09:32:43 +08:00
#include<iostream>
using namespace std;
int main(){
float jg = 4/8 * 100 /2.0;
cout <<"结果:"<<jg;
return 0;
}