📅  最后修改于: 2022-03-11 14:59:21.980000             🧑  作者: Mango
代码示例2
#include
#include
int main(){
int x = 7, y = 5;
float z;
z = (float)x / (float)y; /*Here the value of z is 1.400000*/
return 0;
}