Re: [Dev-C++] ############################
Open Source C & C++ IDE for Windows
Brought to you by:
claplace
|
From: <ste...@ge...> - 2000-12-26 00:44:33
|
Hi again... try this; :-)
#include <dos.h>
#include <iostream.h>
void main(void)
{
unsigned int i;
cout << "Message 1";
for(i=3D0; i<10; i++)
{
delay(1000*i);
cout << (i+1) << "seconds";
}
cout << "Message 2";
}
----- Original Message -----=20
From: ARI FIXLER=20
To: dev...@li...=20
Sent: Sunday, December 24, 2000 4:51 PM
Subject: Re: [Dev-C++] ############################
thanks for the solution!
now how can i display the seconds while it delays?
|