Advertisement
EChebanenko

Untitled

Aug 19th, 2020
1,431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         int i = 7;
  6.  
  7.         while (i <= 98) {
  8.             System.out.print(i + " ");
  9.             i += 7;
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement