【判断题】半永久性染发剂主要是一些相对分子质量较低、可渗透入发丝内部的染料,和头发角质层有一定的亲和力,但在洗发时这些小分子会渗出,一般可耐受12次清洗
【单选题】文中提到的 “道可道,非常道;名可名,非常名。”此句出自 ______
【单选题】设有以下程序: # include . h> int main( ) { int a=201 , b=012 ; printf("%2d , %2d\n" , a , b) ; return 0 : } 程序执行后的输出结果是 ____ 。
【单选题】设有以下程序: #include int main( ) { int a=201,b=012; printf(“%2d,%2d\n”,a,b); return 0; } 程序执行后的输出结果是()
【单选题】设有以下程序: #include int main( ) { int a=151,b=010; printf(“%2d,%2d\n”,a,b); return 0; } 程序执行后的输出结果是()
【单选题】设有以下程序 #include void main() {int x=0,s=1; while(!x!=0) s+=++x; printf("%d",s); } 则( )。
【单选题】设有以下程序:#include main(){int x=0,s=0;while(!x!=0) s+=++x;printf("%d",s);}则执行结果为( )。
【单选题】设有以下程序,程序输出结果是()#include main(){ int a=2,b=5; printf("a=%%d,b=%%d",a,b);}