Horje
for loop Code Example
for loop
for (let i = 0; i < substr.length; ++i) {
    // do something with `substr[i]`
}
for loop
for (int i = 0; i <= 5; i++)
{

}
for loop
# example of forloop and return through factorial
def fact(m):# function factorial
    a=1
    for e in range(1,m+1):#we will be using for loop
        a*=e
    return a#return function
x= 5 # put the value in x eg, 5
d=fact(x)
print(d)

output:
120==5*4*3*2*1
-------------------------------------------------------------------------------
for loop
#for loop
a=b=c=0
for m in range(0,10):
    a=int(input('the number1:'))
    b=int(input('the number2:'))
    if b==0:
        print('intermediate')
        break
    else:
        c=a//b
        print('the answer=',c)
print('conclusion')
-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
For Loop
for (int i = 0; i < 5; i++) {
  System.out.println(i);
}
for loop
# python
n=[10,1,20,1,5,56]     
for i in n:         
    print(i)      
                       
output:
10
1
20
1
5
56
for loop
for (int i = 1; i <= 10; i++) {
	printf("%d\n",i);
}
for loop
for i in range(20)
	print(i)
FOR Loop
For Loop
A for loop is a repetition control structure that allows you to efficiently write a loop that needs to be executed a specific number of times.
A for loop is useful when you know how many times a task is to be repeated.
Syntax : 
for(initialization; Boolean_expression; update) {
   // Statements
}
This is how it works : 

The initialization step is executed first, and only once. This step allows you to declare and initialize any loop control variables and this step ends with a semi colon (;).
Next, the Boolean expression is evaluated.  If it is true, the body of the loop is executed. If it is false, the body of the loop will not be executed and control jumps to the next statement past the for loop.
After the body of the for loop gets executed, the control jumps back up to the update statement. This statement allows you to update any loop control variables. This statement can be left blank with a semicolon at the end.
The Boolean expression is now evaluated again. If it is true, the loop executes and the process repeats (body of loop, then update step, then Boolean expression).  After the Boolean expression is false, the for loop terminates.
for loop
for i in range (some_number):
	#code goes here




Csharp

Related
unity how to move an object to another object Code Example unity how to move an object to another object Code Example
how to get mouse position c# Code Example how to get mouse position c# Code Example
c# latex Code Example c# latex Code Example
remove index from array c# Code Example remove index from array c# Code Example
how to print statement in c# Code Example how to print statement in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12