Which of the following lines contains a valid, though not necessarily accurate, comment?
.
.
Click on the title for the solution
.
.
int twoPi = 3.14159; /* holds the value of two times pi */
int twoPi = 2*3.14159; /* holds the value of two times pi //*
int twoPi = 2*3.14159; / / *holds the value of 6 //*
double twoPi = 2*3.14159; /* // holds the value of two time pi */ [comment] //
.
Click on the title for the solution
.
.
This is the answer:
:
int twoPi = 3.14159; /* holds the value of two times pi */
int twoPi = 2*3.14159; /* holds the value of two times pi //*
int twoPi = 2*3.14159; / / *holds the value of 6 //*
double twoPi = 2*3.14159; /* // holds the value of two time pi */ [comment] //
Comments
Post a Comment