【试题000】C语言整型常量求平方根Sqrt函数

题目:设float x=9,y=2;,表达式(int) (sqrt (x) /y) 的值是?

代码+解析:↓

#include 
#include 
void main() {
  float x = 9, y = 2;
  printf("%d\n", (int)(sqrt(x) / y));
  //结果=1
  //分析:sqrt(x)=9开根号=3.0
  //x/y=3.0/2=1.5
  //(int)1.5=1
}

截图:↓

【试题000】C语言整型常量求平方根Sqrt函数_第1张图片

你可能感兴趣的:(c语言,笔记,开发语言)