Skip to content
海浪Code
Search
K
Main Navigation
编程笔记
C
Java
Python
正则表达式
web前端
HTML
CSS
JavaScript
Node.js
嵌入式
软技能
Appearance
Menu
Return to top
On this page
if语句的格式
c
if
(x
<
10
){
printf
(
"Success
\n
"
);
}
else
{
printf
(
"Fail
\n
"
);
}
return
0
;