根据我国《增值税暂行条例》的规定,下列各项中,不适用13%的低税率的有( )。
A.农药
B.图书
C.汽油
D.石油液化气
参考答案:C
解析: 汽油不属于低税率范围内。
These sweaters are too small for me. Would you show me _____ one?[ ]
A. the other
B. other
C. another
D. some
有如下程序:
#include <iostream> using namespace std; class Sample { friend long fun(Sample s); public: Sample(long a) {x=a;} private: long x; }; long fun(Sample s) { if(s.x < 2) return 1; return s.x * fun(Sample(s.x-1)); } int main() { int stun = 0; for (int i=0; i<6; i++) {sum += fun(Sample(i));} cout << sum; return 0; }
运行时输出的结果是()。
A.120
B.16
C.154
D.34