首页 新闻 会员 周边
6
回答数

待解决问题 5 a/a++为什么结果是1.33333

include<iostream> using namespace std; int main(){ double a=3; double b; b=a/a++; cout<<b; return 0;