Cruz Castillo

Generation

generate functionWed, 24 May 2023

Program to print the serie 1, 2, 3, 4,5, 6, 7, 8, 9, 10 with for java instruction

public class HelloWorld { public static void main(String[] args) { for (int i = 1; i < 11; i++) { System.out.println(i); } } }

Want to kickstart your project?Use the new AI Studio to create your code