吴道子的画风被后人称为“ ” Wu Daozi’s style is
named by later generations as ” ”()吴道子的画风被后人称为“ ” Wu Daozi’s style is
named by later generations as ” ”()
A. 白描plain drawing
B. 吴家样Wu’s pattern
C. 水墨ink wash
D. 线描drawing in line
查看答案
张彦远评价 的作品“六法俱全,万象必尽,像神人假手,穷极造化也” “All Six
Principles have been fulfilled and myriad phenomena completely expressed. Some
god must be painting through his hand, so profoundly does his work fathom张彦远评价 的作品“六法俱全,万象必尽,像神人假手,穷极造化也” “All Six
Principles have been fulfilled and myriad phenomena completely expressed. Some
god must be painting through his hand, so profoundly does his work fathom
A. 阎立本Yan Liben
B. 周昉Zhou Fang
C. 吴道子Wu Daozi
D. 孙位Sun Wei
chara = new char[32];对应的释放内存的语句,哪种写法最好()
A. delete a;
B. a = nullptr;
C. B.delete a;
D. C.delete [] a;
E. D.delete [] a;
F. a = nullptr;
For the statement: inta[10],b; the correct description is[ ]()
A. a can only be lvalue, but b can be rvalue
B. a can only be rvalue, but b can be lvalue
C. both a and b can only be lvalue
D. both a and b can only be rvalue
If compiled with a STANDARD C COMPILER (e.g. gcc), which is correct about the following function “add”? [ ]double add(int , int , int k) {
return (double) (8+k);
}
int main(){
int x=1, y=2If compiled with a STANDARD C COMPILER (e.g. gcc), which is correct about the following function “add”? [ ]double add(int , int , int k) {
return (double) (8+k);
}
int main(){
int x=1, y=2
A. Compile error. After filling in the name of the formal parameters, the program can be compiled without errors;
B. Compile error. After changing “int k” to “double k”, the program can be compiled without errors;
Compile error. After changing ” return (double) (8+k);” to “return 8+k”, the program can be compiled without errors;
D. Compile success