Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Domashka1 {
- public static void main(String[] args) {
- int a = 0;
- int b = 3;
- for (int i = 0; i <= 10; i++) {
- a = b * i;
- System.out.println(b + "*" + i + "=" + a);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment