以下
以下程序段运行后,屏幕的输出结果是( )。char str[80]; strcpy(str,"computer");printf("%d",strlen(str));
以下程序段运行后,屏幕的输出结果是( )。char str[80]; strcpy(str,"computer");printf("%d",strlen(str));C
以下程序的运行结果是( )。 void main() {int s = 0, i = 0; while(i { i++; if(i%2==0) continue; s+=i; } printf("%d\n",s); }
以下程序的运行结果是( )。 void main() {int s = 0, i = 0; while(i { i++; if(i%2==0) continue; s+=i; } printf("%d\n",s); }C