Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
Python
JavaScript
Java
C++
for i in range(10, 0, -1): print(i) print('Liftoff!') #Python
for (let i = 10; i > 0; i--) { console.log(i); } console.log('Liftoff!'); //JavaScript
public class Main { public static void main(String[] args) { for (int i = 10; i > 0; i--) { System.out.println(i); } System.out.println("Liftoff!"); } } //Java
#include
#include
using namespace std; int main() { for (int i = 10; i > 0; i--) { cout << to_string(i) + "\n"; } cout << "Liftoff!\n"; return 0; } //C++
Python result:
JavaScript result:
Java result:
CPP result:
10
9
8
7
6
5
4
3
2
1
Liftoff!
10
9
8
7
6
5
4
3
2
1
Liftoff!
10
9
8
7
6
5
4
3
2
1
Liftoff!
10
9
8
7
6
5
4
3
2
1
Liftoff!