package nambers;
import java.util.Scanner;
public class nambers {
public static void main(String[] args){
Scanner scan=new Scanner(System.in);
int number=1;
for (int counter=0;counter<55;counter++){
System.out.println(number);
number+=3;
}
}
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.