# include <stdio.h> # include <math.h> int main (void) { double a = 9 , b = 16 ; a = sqrt(b) ; printf( " a 是 %f\n " , a ) ; return 0; }