在App Inventor中的如下逻辑代码,换成C语言怎么表达?
在App Inventor中的如下逻辑代码,换成C语言怎么表达?
A.int add(x,y) { return x+y; }
B.int add(int x, int y) { return x+y; }
C.void add(x,y) {return x+y}
D.add(x,y) { return x+y }
正确答案:int add(int x, int y) { return x+y; }
Tag:工程认知
时间:2024-01-05 21:33:14