Fix float / int literals in example inputs
This commit is contained in:
@@ -30,10 +30,10 @@ int main(){
|
||||
}
|
||||
}
|
||||
if (c){
|
||||
f = f * 2;
|
||||
f = f * 2.0;
|
||||
}
|
||||
else{
|
||||
f = f * 3;
|
||||
f = f * 3.0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user