"Основи на програмирането със C++"/Глава 8.2 Задача: комбинации от букви
https://cpp-book.softuni.bg/chapter-08-exam-preparation-part-2.html
Не разбирам къде греша.
#include<iostream>
#include<string>
using namespace std;
int main(){
char letter1,letter2,mediumLetter;
cin>>letter1>>letter2>>mediumLetter;
int counter=0;
for (char l1='letter1'; l1<='letter2'; l1++){
if (l1!='mediumLetter'){
for (char l2='letter1'; l2<='letter2'; l2++){
if (l2!='mediumLetter'){
for (char l3='letter1'; l3<='letter2'; l3++){
if (l3!='mediumLetter'){
cout<<l1<<l2<<l3<<" ";
counter++;
}
}
}
}
}
}
cout<<counter<<endl;
return 0;
}
Благодаря за помощта/забележката!