Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package S4_ForLoops;
- public class NumbersEndingIn7 {
- public static void main(String[] args) {
- // check for ending in 7
- for (int i = 7; i < 1000; i += 10) {
- if (i % 10 == 7) {
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement