首页
编程
java
php
前端
首页
编程
java
php
前端
宏计算,🥺出解题过程
15.设有宏定义:#definef (x)(-x*2) 执行语句:cout<f(2+5)<<endl则输出为 A.-20 B.7 C.-8 D.8
f(2+5)=(-2+5*2)=8 D
点击展开全文