【单选题】阅读程序,写出程序运行结果 set talk off s=0 for k=1 to 10 step 2 if k=7 loop endif s=s+k endfor ?s set talk on return
【简答题】阅读程序,写出程序的运行结果。 void main( ) { struct st { int n: struct st *next; } a[3]={5,&a[1],7,&a[2],9,&a[0]}, *p=a; int i; for(i=0; inext; printf(″p->n=%d\n″, p->n); } 程序的运行结果: ①
【简答题】阅读程序,写出程序的运行结果。 void main( ) { struct st { int n: struct st *next; } a[3]={5,&a[1],7,&a[2],9,&a[0]}, *p=a; int i; for(i=0; inext; printf(″p->n=%d\n″, p->n); } 程序的运行结果: ①