Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
#include <iostream>
using namespace std;
int main(void)
{
int a,b,c,d;
char aa[4]={'A','B','C','D'};
for(a=0;a<=4;a++)
{
for(b=0;b<=4;b++)
{
for(c=0;c<=4;c++)
{
for(d=0;d<=4;d++)
{
cout<<aa[a]<<aa[b]<<aa[c]<<aa[d]<<endl;
}
}
}
}
return 0;
}