Sininerebane

Untitled

Dec 20th, 2021
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class Domashka1 {
  2. public static void main(String[] args) {
  3. int a = 0;
  4. int b = 3;
  5. for (int i = 0; i <= 10; i++) {
  6. a = b * i;
  7. System.out.println(b + "*" + i + "=" + a);
  8. }
  9.  
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment