加action,不支持嵌套大括号
Action()
{
int iCt = 0;
iCt = lr_output_message("abcdefg");
iCt = funA(3,5);
lr_output_message("abcdefg %d",iCt);
}
int funA(int a,int b)
{
int c;
c = a+b;
return c;
}
时间: 2024-12-08 16:36:13
加action,不支持嵌套大括号
Action()
{
int iCt = 0;
iCt = lr_output_message("abcdefg");
iCt = funA(3,5);
lr_output_message("abcdefg %d",iCt);
}
int funA(int a,int b)
{
int c;
c = a+b;
return c;
}