下列程序的输出结果是( )。
#include
main()
{ int i ,S=0;
for(i=1;i<10;i++)
if(!(i%2)&&!(i%3))s+=i;
printf("%d\n" ,s);
}
时间:2020-05-26
人气:1040
对下述程序的判断中,正确的是( )。
#include
main()
{ char*p ,s[256];
p=s ;
while(strcmp(s ,"the end"))
{ printf("Input the strin9 :");
gets(s);
while(*p)
putchar(*p++);
}}
时间:2020-05-26
人气:643