Fix errors in mC example inputs (thanks Markus)
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
|
||||
bool is_square(int n)
|
||||
{
|
||||
int i = 0;
|
||||
int i;
|
||||
i = 0;
|
||||
while(i*i < n){
|
||||
if(i*i == n){
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user