Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Y01numbersEndingIn7 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- for (int i = 7; i <= 997; i++){
- if(i % 10 == 7){
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment