Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
Python
JavaScript
Java
C++
listOfNames = ['Jones','Jill','Lisa','Stan','Bob','Alice'] for i in range(len(listOfNames)): print(listOfNames[i]) if listOfNames[i] == 'Bob': print('Found Bob!') break #Python
const listOfNames = ['Jones','Jill','Lisa','Stan','Bob','Alice']; for (let i = 0; i < listOfNames.length; i++) { console.log(listOfNames[i]); if (listOfNames[i] === 'Bob') { console.log('Found Bob!'); break; } } //JavaScript
public class Main { public static void main(String[] args) { String[] listOfNames = {"Jones", "Jill", "Lisa", "Stan", "Bob", "Alice"}; for (int i = 0; i < listOfNames.length; i++) { System.out.println(listOfNames[i]); if (listOfNames[i] == "Bob") { System.out.println("Found Bob!"); break; } } } } //Java
#include
#include
using namespace std; int main() { string listOfNames[] = {"Jones", "Jill", "Lisa", "Stan", "Bob", "Alice"}; int size = sizeof(listOfNames) / sizeof(listOfNames[0]); for (int i = 0; i < size; i++) { cout << listOfNames[i] + "\n"; if (listOfNames[i] == "Bob") { cout << "Found Bob!\n"; break; } } return 0; } //C++
Python result:
JavaScript result:
Java result:
CPP result:
Jones
Jill
Lisa
Stan
Bob
Found Bob!
Jones
Jill
Lisa
Stan
Bob
Found Bob!
Jones
Jill
Lisa
Stan
Bob
Found Bob!
Jones
Jill
Lisa
Stan
Bob
Found Bob!