"HelloWorld"奇怪问题,大家看看!!!
大家看看这个程序,我用的时候很奇怪!!!#include<iostream.h>
#include<stdio.h>
void main(void)
{
cout<<"hello,world!"<<endl; //1
cout<<"press any key to continue..."; //2
getch(); //3
}
程序执行时,顺序应该为 1 ,2,3
但实际为1,3,2
把2句改成printf();就行了,郁闷啊,请高手指教!!