8 lines
97 B
C
8 lines
97 B
C
|
#include <stdio.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
printf( "%f\n", pow( 1.5, 2.5 ) );
|
||
|
}
|