编程学习网为您整理以下代码实例,主要实现:在整数和浮点数之间转换,希望可以帮到各位朋友。
#include <stdio.h>
int main (voID)
{
float f1 = 123.125, f2;
int i1, i2 = -150;
char c = 'a';
// floating to integer conversion
i1 = f1;//
printf ("%f assigned to an int procedure %i\n", f1, i1);
// integer to floating conversion
f1 = i2;
printf ("%i assigned to a float procedure %f\n", i2, f1);
// integer divIDed by integer
f1 = i2 / 100;
printf ("%i divIDed by 100 produces %f\n", i2, f1);
// integer divIDed by float
f2 = i2 / 100.0;
printf ("%i divIDed by 100.0 produces %f\n", i2, f2);
// type cast operator
f2 = (float) i2 / 100;
printf ("(float) %i divIDed by 100 produces %f\n", i2, f2);
return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!