mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
28 lines
499 B
C++
28 lines
499 B
C++
#include <iostream>
|
|
#include <thread>
|
|
|
|
|
|
int main()
|
|
{
|
|
for(int i = 0; i<10 ; i++)
|
|
{
|
|
for(int j = 0; j<400 ; j++)
|
|
{
|
|
std::cout << char(41)+i;
|
|
}
|
|
std::cout << std::endl;
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
}
|
|
std::cout << "" << std::endl;
|
|
|
|
for(int j = 0; j<4000 ; j++)
|
|
{
|
|
std::cout << "ZO";
|
|
}
|
|
for(int j = 0; j<4000 ; j++)
|
|
{
|
|
std::cout << "ZA";
|
|
}
|
|
std::cout << std::endl;
|
|
} |