Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.company;
- public class Main {
- public static void main(String[] args) {
- int Price = 14;
- System.out.println("Эта программа выведет таблицу стоимости порций сыра в рублях");
- for (int i = 1; i < 21; i++) {
- System.out.print(Price + " ");
- Price += 14;
- if (i % 5 == 0) {
- System.out.println();
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement