Program pyramid output?
- With the help of ChatGPT, I found the solution, or rather, understood it. But how the hell do I manage to figure out such logic myself?
- Difference between C and Python
C:
int hohe = 5; // Aufsteigender Teil for (int i = 1; i <= hohe; ++i) { printf("\n"); for (int j = 1; j <= i; ++j) { printf("%d", j); } }
Python:
hohe = 5 for i in range (1, hohe + 1, 1): print() for j in range(1, i + 1, 1): print(j, end=" ")
In each case, it's about the inner loop. Both make sense, but why can't I use the C version in Python (this j <= i or the other way around from Python to C).
By trying to understand the problem first and then disassemble it into individual problems.
In the case of the pyramid you know the end form:
You can first notice that you need n lines, where n corresponds to the pyramid height.
Part Problem 1: Outputting all pyramid rows
There is still a lack of consideration of how a line has to be built. Each line counts from 1 to the respective line height (the first line counts to 1, the second line counts to two, the third line counts to three, …).
Part Problem 2: Outputting a Single Pyramid Line
Both steps are combined in sequence:
I put this in pseudocode. Structograms or Program schedules would also be suitable for this. The main thing is that the solution steps are first described with as simple means as possible.
After a few successful tests (via test setups), the actual translation into the respective programming language can take place. Do not make the mistake of trying to formulate your algorithms in C (o.a.) program code from the beginning, because you tend to distract yourself from syntax rules and make it harder for you.
A one-to-one translation could initially look like this:
It is then possible to see whether the code (e.g. in its formulation) can be optimized:
It makes sense to practice this principle for forming algorithms as much as possible. In some of my contributions to GF, I have already proposed tasks (see , and ), which you could edit. On websites like CodingBat, Edabit, Exercism or Project Euler you will find other ideas.
C and Python are two different programming languages with their own syntax rules. In Python there is not this type of counting loop with conditional expression, as in C.
Alternatively, for...in you could have and- Use a loop. In this context and-Small of C again more similar.
1. So in order to get to it yourself, you need a basic understanding of logic. Learning how to write algorithms is best done with a book. And with a little practicing, that’ll be fine.
Two. This is simply because C and Python are completely different languages. From the principle they do the same as you have already noticed.
With a little time and exercise, that’s all right. Believe me.
I remember doing the same as a recursion task.
is your question how the for loop in C differs from that in Python?
LG