java for
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
java for
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
for loop java
for (int i = 0; i < 5; i++) {
System.out.println(i);
}
for loop java
for(int i = 0; i < 10; i++){
System.out.println(i);
//this will print out every number for 0 to 9.
}
java for loop
class for_loop
{
public static void main(String args[])
{
for(int i=0;i<10;i++)
{
System.out.print(" " + i);
}
/*
Output: 0 1 2 3 4 5 6 7 8 9
*/
}
}
for() in java
public class name_of_java_app {
public static void main(String[] args) {
int value = 4;
string whatever_value = "whatever_val";
// The value can be whatever you want.
for(int name_of_int; name_of_int < value; name_of_int++) {
System.out.println(whatever_value + name_of_int);
}
// The output will be 0 1 2 3 4 whatever_val
// You can put any data value such as char or short but not boolean
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us