Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
for
for (initialization; condition; iteratore) { .. }
int n = 5, int sum = 0; for (int i = 1; i <= n; i++) { sum += i; } Console.WriteLine($"Sum of first {n} natural numbers = {sum}");
Sum of first 5 natural numbers = 15
Contact support