Skip to content

if语句的格式

c
if (x < 10){
	printf("Success\n");
}
else{
	printf("Fail\n");
}
return 0;