c語言中求一個數的平方根

一般的來說我們在進行開方運算時,都會使用sqrt函數進行開方運算。使用sqrt時就需要引用頭文件math.h。(這裏使用%d來輸出整數) #include<stdio.h> #include<math.h> int Mysqrt(int n) {        return sqrt(n*1.0); } int main() {     printf("%d\n",Mysqrt(10));    
相關文章
相關標籤/搜索