12345678910
cout << "L" << endl; cout << "o" << endl; cout << "a" << endl; cout << "d" << endl; cout << "i" << endl; cout << "n" << endl; cout << "g" << endl; cout << "." << endl; cout << "." << endl; cout << "." << endl;
#include <ctime>
1234567891011121314151617181920212223242526272829
#include <iostream> #include <Windows.h> //you need this header to use Sleep() using namespace std; int main() { cout << "L" << endl; Sleep(1000); //this pauses the program for 1000 milliseconds (1 second) cout << "o" << endl; Sleep(1000); cout << "a" << endl; Sleep(1000); cout << "d" << endl; Sleep(1000); cout << "i" << endl; Sleep(1000); cout << "n" << endl; Sleep(1000); cout << "g" << endl; Sleep(1000); cout << "." << endl; Sleep(1000); cout << "." << endl; Sleep(1000); cout << "." << endl; Sleep(1000); return 0; }