Answer:
void print2(int row) {
for (int i = 0; i < row; i++) {
char ch = 'a';
char print = ch;
for (int j = 0; j <= i; j++) {
cout << print++;
}
cout << endl;
}
}
int count_digits(int num) {
int count = 0;
int temp = num;
while (temp != 0) {
temp = temp / 10;
count++;
}
return (num % count);
}
Explanation:
Answer:
No but my baby brother can play with u
What is that I never heard of that before
AI is a technology that can do thing that humans are doing. So in future humans don’t have to these AI will do it for us.
I included my code in the picture below.