Programming Basics with Java - група февруари 2019
Здравейте,
ако някой има нужда да си свери решенията на четирите задачи от 03.02.2019 г. :
1. Hello Soft Uni
public class Hello_Soft_Uni {
public static void main(String[] args) {
System.out.println("Hello SoftUni");
}
}
=========================================================================================
2. Expression
public class Expression {
public static void main(String[] args) {
System.out.println((3522 + 52353) * 23 - (2336 * 501 + 23432 - 6743) * 3);
}
}
==========================================================================================
3. Nums1to20
public class Nums1to20 {
public static void main(String[] args) {
for (int i = 1; i < 21; i++) {
System.out.println(i);
}
}
}
===========================================================================================
4. Rectangle area
import java.util.Scanner;
public class Rectangle_Area {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int a = Integer.parseInt(scanner.nextLine());
int b = Integer.parseInt(scanner.nextLine());
int area = a*b;
System.out.println(area);
}
}
Решенията са проверени в оценени в Judge със 100/100.