C++
potrzebuje programu, najpierw wypisuje dowolny teskt a potem po nacisnieciu entera wyczysci wszystko i wypisuje nowy tekst
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
int main()
{
std::cout<<"wypisanie tekstu 1";
system("pause");
system("cls");
std::cout<<"wypisanie tekstu 2";
}