From ebde317f160f13b803d415211f1560189bed5472 Mon Sep 17 00:00:00 2001 From: THE NET Date: Sun, 30 Nov 2014 09:22:27 +0200 Subject: [PATCH 01/41] that is task 11, exam 1. --- .../exam1_10/src/exam1_10/Exam1_10.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java diff --git a/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java b/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java new file mode 100644 index 0000000..97260f0 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1_10; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1_10 { + /** + */ + public static void f(double a, double b){ + + System.out.println((a*a + (2*a-(b*b)) + 7*b)); + + } + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете а="); + Double a = scanner.nextDouble(); + + System.out.print("Въведете b="); + Double b = scanner.nextDouble(); + + System.out.print("Въведете c="); + Double c = scanner.nextDouble(); + + System.out.print("Въведете d="); + Double d = scanner.nextDouble(); + + scanner.close(); + + System.out.println(a + b + c +d); + f(a,b); + f(a,d); + f(b,c); + + } + } \ No newline at end of file From c7c5fe08923f6c1957aaa24ca5dbd343b3547cf8 Mon Sep 17 00:00:00 2001 From: THE NET Date: Sun, 30 Nov 2014 11:14:45 +0200 Subject: [PATCH 02/41] that is task 11, exam 1. --- .../exam1task6/src/exam1task6/Exam1task6.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java diff --git a/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java b/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java new file mode 100644 index 0000000..4741084 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task6; + +/** + * + * @author THE NET + */ +public class Exam1task6 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + boolean b; + b = (1==1); + System.out.println(b); + b = (1==2); + System.out.println(b); + //yes! + } + +} From b10662a860123401f90e2eb13ea32bef9608da82 Mon Sep 17 00:00:00 2001 From: THE NET Date: Sun, 30 Nov 2014 11:15:41 +0200 Subject: [PATCH 03/41] that is task 11, exam 1. --- .gitignore | 49 +- 1401417015 AngelFlag/2_1/build.xml | 73 + 1401417015 AngelFlag/2_1/manifest.mf | 3 + .../2_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../2_1/nbproject/genfiles.properties | 8 + .../2_1/nbproject/project.properties | 73 + .../2_1/nbproject/project.xml | 15 + 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 23 + .../Exam2_1bdowhile/build.xml | 73 + .../Exam2_1bdowhile/manifest.mf | 3 + .../Exam2_1bdowhile/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../Exam2_1bdowhile/nbproject/project.xml | 15 + .../src/exam2_1bdowhile/Exam2_1bdowhile.java | 25 + 1401417015 AngelFlag/HelloWorld.java | 30 + 1401417015 AngelFlag/bigdecimal/build.xml | 73 + 1401417015 AngelFlag/bigdecimal/manifest.mf | 3 + .../bigdecimal/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../bigdecimal/nbproject/genfiles.properties | 8 + .../bigdecimal/nbproject/project.properties | 73 + .../bigdecimal/nbproject/project.xml | 15 + .../bigdecimal/src/bigdecimal/Bigdecimal.java | 29 + 1401417015 AngelFlag/course/build.xml | 73 + 1401417015 AngelFlag/course/manifest.mf | 3 + .../course/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../course/nbproject/genfiles.properties | 8 + .../course/nbproject/project.properties | 73 + .../course/nbproject/project.xml | 15 + .../course/src/course/Course.java | 48 + 1401417015 AngelFlag/datatype/build.xml | 73 + 1401417015 AngelFlag/datatype/manifest.mf | 3 + .../datatype/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../datatype/nbproject/genfiles.properties | 8 + .../datatype/nbproject/project.properties | 73 + .../datatype/nbproject/project.xml | 15 + .../datatype/src/datatype/Datatype.java | 43 + 1401417015 AngelFlag/exam1_10/build.xml | 73 + 1401417015 AngelFlag/exam1_10/manifest.mf | 3 + .../exam1_10/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1_10/nbproject/genfiles.properties | 8 + .../exam1_10/nbproject/project.properties | 73 + .../exam1_10/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam1task3.2/build.xml | 73 + 1401417015 AngelFlag/exam1task3.2/manifest.mf | 3 + .../exam1task3.2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../exam1task3.2/nbproject/project.properties | 73 + .../exam1task3.2/nbproject/project.xml | 15 + .../src/exam1task3/pkg2/Exam1task32.java | 33 + .../exam1task3intTwo/build.xml | 73 + .../exam1task3intTwo/manifest.mf | 3 + .../exam1task3intTwo/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../exam1task3intTwo/nbproject/project.xml | 15 + .../exam1task3inttwo/Exam1task3intTwo.java | 28 + 1401417015 AngelFlag/exam1task4/build.xml | 73 + 1401417015 AngelFlag/exam1task4/manifest.mf | 3 + .../exam1task4/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task4/nbproject/genfiles.properties | 8 + .../exam1task4/nbproject/project.properties | 73 + .../exam1task4/nbproject/project.xml | 15 + .../exam1task4/src/exam1task4/Exam1task4.java | 29 + 1401417015 AngelFlag/exam1task5/build.xml | 73 + 1401417015 AngelFlag/exam1task5/manifest.mf | 3 + .../exam1task5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task5/nbproject/genfiles.properties | 8 + .../exam1task5/nbproject/project.properties | 73 + .../exam1task5/nbproject/project.xml | 15 + .../exam1task5/src/exam1task5/Exam1task5.java | 30 + 1401417015 AngelFlag/exam1task6/build.xml | 73 + 1401417015 AngelFlag/exam1task6/manifest.mf | 3 + .../exam1task6/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task6/nbproject/genfiles.properties | 8 + .../exam1task6/nbproject/project.properties | 73 + .../exam1task6/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam1task7/build.xml | 73 + 1401417015 AngelFlag/exam1task7/manifest.mf | 3 + .../exam1task7/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task7/nbproject/genfiles.properties | 8 + .../exam1task7/nbproject/project.properties | 73 + .../exam1task7/nbproject/project.xml | 15 + .../exam1task7/src/exam1task7/Exam1task7.java | 27 + 1401417015 AngelFlag/exam1task8/build.xml | 73 + 1401417015 AngelFlag/exam1task8/manifest.mf | 3 + .../exam1task8/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task8/nbproject/genfiles.properties | 8 + .../exam1task8/nbproject/project.properties | 73 + .../exam1task8/nbproject/project.xml | 15 + .../exam1task8/src/exam1task8/Exam1task8.java | 32 + 1401417015 AngelFlag/exam1task8a/build.xml | 73 + 1401417015 AngelFlag/exam1task8a/manifest.mf | 3 + .../exam1task8a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task8a/nbproject/genfiles.properties | 8 + .../exam1task8a/nbproject/project.properties | 73 + .../exam1task8a/nbproject/project.xml | 15 + .../src/exam1task8a/Exam1task8a.java | 32 + 1401417015 AngelFlag/exam1task9/build.xml | 73 + 1401417015 AngelFlag/exam1task9/manifest.mf | 3 + .../exam1task9/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9/nbproject/genfiles.properties | 8 + .../exam1task9/nbproject/project.properties | 73 + .../exam1task9/nbproject/project.xml | 15 + .../exam1task9/src/exam1task9/Exam1task9.java | 36 + 1401417015 AngelFlag/exam1task9a/build.xml | 73 + 1401417015 AngelFlag/exam1task9a/manifest.mf | 3 + .../exam1task9a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9a/nbproject/genfiles.properties | 8 + .../exam1task9a/nbproject/project.properties | 73 + .../exam1task9a/nbproject/project.xml | 15 + .../src/exam1task9a/Exam1task9a.java | 34 + 1401417015 AngelFlag/exam1task9b/build.xml | 73 + 1401417015 AngelFlag/exam1task9b/manifest.mf | 3 + .../exam1task9b/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9b/nbproject/genfiles.properties | 8 + .../exam1task9b/nbproject/project.properties | 73 + .../exam1task9b/nbproject/project.xml | 15 + .../src/exam1task9b/Exam1task9b.java | 52 + 1401417015 AngelFlag/exam1task9c/build.xml | 73 + 1401417015 AngelFlag/exam1task9c/manifest.mf | 3 + .../exam1task9c/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9c/nbproject/genfiles.properties | 8 + .../exam1task9c/nbproject/project.properties | 73 + .../exam1task9c/nbproject/project.xml | 15 + .../src/exam1task9c/Exam1task9c.java | 35 + 1401417015 AngelFlag/exam2_1a/build.xml | 73 + 1401417015 AngelFlag/exam2_1a/manifest.mf | 3 + .../exam2_1a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_1a/nbproject/genfiles.properties | 8 + .../exam2_1a/nbproject/project.properties | 73 + .../exam2_1a/nbproject/project.xml | 15 + .../exam2_1a/src/exam2_1a/Exam2_1a.java | 27 + 1401417015 AngelFlag/exam2_1c/build.xml | 73 + 1401417015 AngelFlag/exam2_1c/manifest.mf | 3 + .../exam2_1c/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_1c/nbproject/genfiles.properties | 8 + .../exam2_1c/nbproject/project.properties | 73 + .../exam2_1c/nbproject/project.xml | 15 + .../exam2_1c/src/exam2_1c/Exam2_1c.java | 25 + 1401417015 AngelFlag/exam2_2/build.xml | 73 + 1401417015 AngelFlag/exam2_2/manifest.mf | 3 + .../exam2_2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_2/nbproject/genfiles.properties | 8 + .../exam2_2/nbproject/project.properties | 73 + .../exam2_2/nbproject/project.xml | 15 + .../exam2_2/src/exam2_2/Exam2_2.java | 21 + 1401417015 AngelFlag/method/build.xml | 73 + 1401417015 AngelFlag/method/manifest.mf | 3 + .../method/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../method/nbproject/genfiles.properties | 8 + .../method/nbproject/project.properties | 73 + .../method/nbproject/project.xml | 15 + .../method/src/method/Method.java | 44 + 1401417015 AngelFlag/myWorld/build.xml | 73 + 1401417015 AngelFlag/myWorld/manifest.mf | 3 + .../myWorld/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../myWorld/nbproject/genfiles.properties | 8 + .../myWorld/nbproject/project.properties | 73 + .../myWorld/nbproject/project.xml | 15 + .../myWorld/src/myworld/MyWorld.java | 30 + .../myWorld/src/myworld/Person.java | 14 + 1401417015 AngelFlag/upr1zad2intI=5/build.xml | 73 + .../upr1zad2intI=5/manifest.mf | 3 + .../upr1zad2intI=5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../upr1zad2intI=5/nbproject/project.xml | 15 + .../src/upr1zad2inti/pkg5/Upr1zad2intI5.java | 22 + 169 files changed, 38837 insertions(+), 1 deletion(-) create mode 100644 1401417015 AngelFlag/2_1/build.xml create mode 100644 1401417015 AngelFlag/2_1/manifest.mf create mode 100644 1401417015 AngelFlag/2_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/2_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/2_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/2_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/build.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java create mode 100644 1401417015 AngelFlag/HelloWorld.java create mode 100644 1401417015 AngelFlag/bigdecimal/build.xml create mode 100644 1401417015 AngelFlag/bigdecimal/manifest.mf create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.properties create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.xml create mode 100644 1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java create mode 100644 1401417015 AngelFlag/course/build.xml create mode 100644 1401417015 AngelFlag/course/manifest.mf create mode 100644 1401417015 AngelFlag/course/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/course/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/course/nbproject/project.properties create mode 100644 1401417015 AngelFlag/course/nbproject/project.xml create mode 100644 1401417015 AngelFlag/course/src/course/Course.java create mode 100644 1401417015 AngelFlag/datatype/build.xml create mode 100644 1401417015 AngelFlag/datatype/manifest.mf create mode 100644 1401417015 AngelFlag/datatype/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/datatype/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/datatype/nbproject/project.properties create mode 100644 1401417015 AngelFlag/datatype/nbproject/project.xml create mode 100644 1401417015 AngelFlag/datatype/src/datatype/Datatype.java create mode 100644 1401417015 AngelFlag/exam1_10/build.xml create mode 100644 1401417015 AngelFlag/exam1_10/manifest.mf create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/build.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java create mode 100644 1401417015 AngelFlag/exam1task3intTwo/build.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java create mode 100644 1401417015 AngelFlag/exam1task4/build.xml create mode 100644 1401417015 AngelFlag/exam1task4/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java create mode 100644 1401417015 AngelFlag/exam1task5/build.xml create mode 100644 1401417015 AngelFlag/exam1task5/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java create mode 100644 1401417015 AngelFlag/exam1task6/build.xml create mode 100644 1401417015 AngelFlag/exam1task6/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task7/build.xml create mode 100644 1401417015 AngelFlag/exam1task7/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java create mode 100644 1401417015 AngelFlag/exam1task8/build.xml create mode 100644 1401417015 AngelFlag/exam1task8/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java create mode 100644 1401417015 AngelFlag/exam1task8a/build.xml create mode 100644 1401417015 AngelFlag/exam1task8a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java create mode 100644 1401417015 AngelFlag/exam1task9/build.xml create mode 100644 1401417015 AngelFlag/exam1task9/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java create mode 100644 1401417015 AngelFlag/exam1task9a/build.xml create mode 100644 1401417015 AngelFlag/exam1task9a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java create mode 100644 1401417015 AngelFlag/exam1task9b/build.xml create mode 100644 1401417015 AngelFlag/exam1task9b/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java create mode 100644 1401417015 AngelFlag/exam1task9c/build.xml create mode 100644 1401417015 AngelFlag/exam1task9c/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java create mode 100644 1401417015 AngelFlag/exam2_1a/build.xml create mode 100644 1401417015 AngelFlag/exam2_1a/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java create mode 100644 1401417015 AngelFlag/exam2_1c/build.xml create mode 100644 1401417015 AngelFlag/exam2_1c/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java create mode 100644 1401417015 AngelFlag/exam2_2/build.xml create mode 100644 1401417015 AngelFlag/exam2_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java create mode 100644 1401417015 AngelFlag/method/build.xml create mode 100644 1401417015 AngelFlag/method/manifest.mf create mode 100644 1401417015 AngelFlag/method/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/method/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/method/nbproject/project.properties create mode 100644 1401417015 AngelFlag/method/nbproject/project.xml create mode 100644 1401417015 AngelFlag/method/src/method/Method.java create mode 100644 1401417015 AngelFlag/myWorld/build.xml create mode 100644 1401417015 AngelFlag/myWorld/manifest.mf create mode 100644 1401417015 AngelFlag/myWorld/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/myWorld/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/myWorld/nbproject/project.properties create mode 100644 1401417015 AngelFlag/myWorld/nbproject/project.xml create mode 100644 1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java create mode 100644 1401417015 AngelFlag/myWorld/src/myworld/Person.java create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/build.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/manifest.mf create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java diff --git a/.gitignore b/.gitignore index 0f19428..41205db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,49 @@ /1401417003_KalinDimov/NewProject/nbproject/private/ -/1401417003_KalinDimov/NewProject/build/ \ No newline at end of file +/1401417003_KalinDimov/NewProject/build/ +/0000000000_StoyanCheresharov/DataTypes/nbproject/private/ +/0000000000_StoyanCheresharov/DataTypes/build/ +/1401417015 AngelFlag/datatype/nbproject/private/ +/1401417015 AngelFlag/datatype/build/ +/1401417015 AngelFlag/bigdecimal/nbproject/private/ +/1401417015 AngelFlag/bigdecimal/build/ +/1401417015 AngelFlag/method/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/build/ +/1401417015 AngelFlag/exam1task3intTwo/nbproject/private/ +/1401417015 AngelFlag/exam1task3intTwo/build/ +/1401417015 AngelFlag/exam1task4/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/build/ +/1401417015 AngelFlag/exam1task4/build/ +/1401417015 AngelFlag/exam1task5/nbproject/private/ +/1401417015 AngelFlag/exam1task5/build/ +/1401417015 AngelFlag/exam1task6/nbproject/private/ +/1401417015 AngelFlag/exam1task6/build/ +/1401417015 AngelFlag/exam1task7/nbproject/private/ +/1401417015 AngelFlag/exam1task7/build/ +/1401417015 AngelFlag/exam1task8/nbproject/private/ +/1401417015 AngelFlag/exam1task8/build/ +/1401417015 AngelFlag/exam1task9/nbproject/private/ +/1401417015 AngelFlag/exam1task9/build/ +/1401417015 AngelFlag/exam1task8a/nbproject/private/ +/1401417015 AngelFlag/exam1task8a/build/ +/1401417015 AngelFlag/exam1task9a/nbproject/private/ +/1401417015 AngelFlag/exam1task9a/build/ +/1401417015 AngelFlag/exam1task9b/nbproject/private/ +/1401417015 AngelFlag/exam1task9b/build/ +/1401417015 AngelFlag/exam1task9c/nbproject/private/ +/1401417015 AngelFlag/exam1task9c/build/ +/1401417015 AngelFlag/exam1_10/nbproject/private/ +/1401417015 AngelFlag/exam1_10/build/ +/1401417015 AngelFlag/2_1/nbproject/private/ +/1401417015 AngelFlag/2_1/build/ +/1401417015 AngelFlag/exam2_2/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/build/ +/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/private/ +/1401417015 AngelFlag/Exam2_1bdowhile/build/ +/1401417015 AngelFlag/exam2_1c/nbproject/private/ +/1401417015 AngelFlag/exam2_1c/build/ +/1401417015 AngelFlag/course/nbproject/private/ +/1401417015 AngelFlag/course/build/ +/1401417015 AngelFlag/myWorld/nbproject/private/ \ No newline at end of file diff --git a/1401417015 AngelFlag/2_1/build.xml b/1401417015 AngelFlag/2_1/build.xml new file mode 100644 index 0000000..e38caea --- /dev/null +++ b/1401417015 AngelFlag/2_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project 2_1. + + + diff --git a/1401417015 AngelFlag/2_1/manifest.mf b/1401417015 AngelFlag/2_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/2_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/2_1/nbproject/build-impl.xml b/1401417015 AngelFlag/2_1/nbproject/build-impl.xml new file mode 100644 index 0000000..7d875f2 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/2_1/nbproject/genfiles.properties b/1401417015 AngelFlag/2_1/nbproject/genfiles.properties new file mode 100644 index 0000000..2dde524 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=acce3b89 +build.xml.script.CRC32=aa102bea +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=acce3b89 +nbproject/build-impl.xml.script.CRC32=5e0a35e6 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/2_1/nbproject/project.properties b/1401417015 AngelFlag/2_1/nbproject/project.properties new file mode 100644 index 0000000..5eb4c7f --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/2_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=pkg2_1.Main +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/2_1/nbproject/project.xml b/1401417015 AngelFlag/2_1/nbproject/project.xml new file mode 100644 index 0000000..9e089d7 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + 2_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java new file mode 100644 index 0000000..4e66417 --- /dev/null +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -0,0 +1,23 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package pkg2_1; +/** + * + * @author THE NET + */ +public class Main { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i=1; + while(i<15) + { + System.out.println(i); + i= i+1; +// TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/build.xml b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml new file mode 100644 index 0000000..c564efc --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Exam2_1bdowhile. + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml new file mode 100644 index 0000000..8c3df33 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties new file mode 100644 index 0000000..43ca841 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=c353d51d +build.xml.script.CRC32=e3b46deb +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=c353d51d +nbproject/build-impl.xml.script.CRC32=c2df34a9 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties new file mode 100644 index 0000000..50f8641 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/Exam2_1bdowhile.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1bdowhile.Exam2_1bdowhile +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml new file mode 100644 index 0000000..38e54e8 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + Exam2_1bdowhile + + + + + + + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java new file mode 100644 index 0000000..dae7e03 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1bdowhile; + +/** + * + * @author THE NET + */ +public class Exam2_1bdowhile { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + do{System.out.println(i); + i=i+1; + } + while (i<11); + } + +} diff --git a/1401417015 AngelFlag/HelloWorld.java b/1401417015 AngelFlag/HelloWorld.java new file mode 100644 index 0000000..bebaa62 --- /dev/null +++ b/1401417015 AngelFlag/HelloWorld.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package hello.world; + +import static java.lang.Compiler.command; + +/** + * + * @author Flag + */ +class HelloWorld { + + public static void main(String[] args) { + System.out.println("Hello world") ; + System.out.println("Hello Angel"); + printLogo(); + } + public static void printLogo(){ + System.out.println("Sun Microsystems"); + System.out.println("www.sun.com"); + angelBy(); + } + public static void angelBy(){ + System.out.println("NameAb"); + + } +} diff --git a/1401417015 AngelFlag/bigdecimal/build.xml b/1401417015 AngelFlag/bigdecimal/build.xml new file mode 100644 index 0000000..b371ba2 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project bigdecimal. + + + diff --git a/1401417015 AngelFlag/bigdecimal/manifest.mf b/1401417015 AngelFlag/bigdecimal/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml b/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml new file mode 100644 index 0000000..674420c --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties b/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties new file mode 100644 index 0000000..e2784d3 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=618fbcbe +build.xml.script.CRC32=90d896f6 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=618fbcbe +nbproject/build-impl.xml.script.CRC32=8a487ec2 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.properties b/1401417015 AngelFlag/bigdecimal/nbproject/project.properties new file mode 100644 index 0000000..a41dd83 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/bigdecimal.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=bigdecimal.Bigdecimal +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.xml b/1401417015 AngelFlag/bigdecimal/nbproject/project.xml new file mode 100644 index 0000000..da29dda --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + bigdecimal + + + + + + + + + diff --git a/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java new file mode 100644 index 0000000..cc7888e --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package bigdecimal; + +/** + * + * @author THE NET + */ +import java.math.BigDecimal; +public class Bigdecimal { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double sum = 0.0d; + BigDecimal bdValue = new BigDecimal("0.1"); + BigDecimal bdSum = new BigDecimal("0.0"); + for(int i=1; i<=10; i++) { + sum += 0.1d; + bdSum = bdSum.add(bdValue); +} + System.out.println("Double sum is: " + sum); + System.out.println("BigDecimal sum is: " + bdSum); + + } +} diff --git a/1401417015 AngelFlag/course/build.xml b/1401417015 AngelFlag/course/build.xml new file mode 100644 index 0000000..28ffcb3 --- /dev/null +++ b/1401417015 AngelFlag/course/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project course. + + + diff --git a/1401417015 AngelFlag/course/manifest.mf b/1401417015 AngelFlag/course/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/course/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/course/nbproject/build-impl.xml b/1401417015 AngelFlag/course/nbproject/build-impl.xml new file mode 100644 index 0000000..f71de41 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/course/nbproject/genfiles.properties b/1401417015 AngelFlag/course/nbproject/genfiles.properties new file mode 100644 index 0000000..46296b5 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8948245e +build.xml.script.CRC32=8a3e2cbe +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8948245e +nbproject/build-impl.xml.script.CRC32=4f5680da +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/course/nbproject/project.properties b/1401417015 AngelFlag/course/nbproject/project.properties new file mode 100644 index 0000000..063c409 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/course.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=course.Course +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/course/nbproject/project.xml b/1401417015 AngelFlag/course/nbproject/project.xml new file mode 100644 index 0000000..cb8db17 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + course + + + + + + + + + diff --git a/1401417015 AngelFlag/course/src/course/Course.java b/1401417015 AngelFlag/course/src/course/Course.java new file mode 100644 index 0000000..5d65ed6 --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Course.java @@ -0,0 +1,48 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +import java.util.Scanner; + +public class Course { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner Keyboard= new Scanner(System.in); + boolean exit = false; + + do { + System.out.println("type 'exit' to exit this program..."); + input = Keyboard.nextLine(); + if(input.equals("exit")){ + exit = true; + }while(exit == false); + + + } + }while(exit == false); + System.out.println("Goodbye"); + + } + } + + Boolean hello = true; + + while(hello) + { + System.out.println("Hello"); + hello = false; + + } + } + + \ No newline at end of file diff --git a/1401417015 AngelFlag/datatype/build.xml b/1401417015 AngelFlag/datatype/build.xml new file mode 100644 index 0000000..a3a8dae --- /dev/null +++ b/1401417015 AngelFlag/datatype/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project datatype. + + + diff --git a/1401417015 AngelFlag/datatype/manifest.mf b/1401417015 AngelFlag/datatype/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/datatype/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/datatype/nbproject/build-impl.xml b/1401417015 AngelFlag/datatype/nbproject/build-impl.xml new file mode 100644 index 0000000..5ec9fa9 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/datatype/nbproject/genfiles.properties b/1401417015 AngelFlag/datatype/nbproject/genfiles.properties new file mode 100644 index 0000000..5f59edb --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=29b44223 +build.xml.script.CRC32=2b73bf7e +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=29b44223 +nbproject/build-impl.xml.script.CRC32=5fdc240a +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/datatype/nbproject/project.properties b/1401417015 AngelFlag/datatype/nbproject/project.properties new file mode 100644 index 0000000..94198f5 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/datatype.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=datatype.Datatype +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/datatype/nbproject/project.xml b/1401417015 AngelFlag/datatype/nbproject/project.xml new file mode 100644 index 0000000..934e5a8 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + datatype + + + + + + + + + diff --git a/1401417015 AngelFlag/datatype/src/datatype/Datatype.java b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java new file mode 100644 index 0000000..4dedf36 --- /dev/null +++ b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java @@ -0,0 +1,43 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package datatype; + +import java.io.IOException; +import java.util.*; + + public class Datatype { + + public static void main(String[] args) throws IOException { + + byte myByte = 2; + short myShort = 257; + int myInt = -123; + long myLong = 123L; + float myFloat = 2.34F; + double myDouble =2.54; + char myChar = 'c'; + boolean myBoolean = true; //false; + String myName = " Stoyan"; + + System.out.println(myName); + System.out.print(myName); + + int ch; + ch= System.in.read(); + { + double sum = 0.0; + for(int i=1; i<=10; i++) + { + sum += 0.1; + { +System.out.println(sum); + } + } + + } + }} + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1_10/build.xml b/1401417015 AngelFlag/exam1_10/build.xml new file mode 100644 index 0000000..31bc0db --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1_10. + + + diff --git a/1401417015 AngelFlag/exam1_10/manifest.mf b/1401417015 AngelFlag/exam1_10/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml new file mode 100644 index 0000000..d2c9fe3 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties new file mode 100644 index 0000000..c0a9292 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8e72f6a1 +build.xml.script.CRC32=90833347 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8e72f6a1 +nbproject/build-impl.xml.script.CRC32=1c46fc17 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.properties b/1401417015 AngelFlag/exam1_10/nbproject/project.properties new file mode 100644 index 0000000..c7a351a --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1_10.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1_10.Exam1_10 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.xml b/1401417015 AngelFlag/exam1_10/nbproject/project.xml new file mode 100644 index 0000000..f583e68 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1_10 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/build.xml b/1401417015 AngelFlag/exam1task3.2/build.xml new file mode 100644 index 0000000..b594a76 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3.2. + + + diff --git a/1401417015 AngelFlag/exam1task3.2/manifest.mf b/1401417015 AngelFlag/exam1task3.2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml new file mode 100644 index 0000000..89deda9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties new file mode 100644 index 0000000..0f8c5ad --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=aa744994 +build.xml.script.CRC32=f6a8db23 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=aa744994 +nbproject/build-impl.xml.script.CRC32=58519fe9 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties new file mode 100644 index 0000000..7893a5e --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task3.2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task3.pkg2.Exam1task32 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml new file mode 100644 index 0000000..a1bdeb9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task3.2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java new file mode 100644 index 0000000..6d4bfdd --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3.pkg2; + +/** + * + * @author THE NET + */ +public class Exam1task32 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + m(d1,d2); + m(d2 , d1); + m(2.0,1.2); + + } + public static void m(double d1, double d2){ + + System.out.println(d1 + "+" + d2 +"=" + (d1+d2));//l + System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + +} +} diff --git a/1401417015 AngelFlag/exam1task3intTwo/build.xml b/1401417015 AngelFlag/exam1task3intTwo/build.xml new file mode 100644 index 0000000..a28f87e --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3intTwo. + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/manifest.mf b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml new file mode 100644 index 0000000..e0a1e75 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties new file mode 100644 index 0000000..87fc8aa --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=ee924b3e +build.xml.script.CRC32=d8ac396d +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=ee924b3e +nbproject/build-impl.xml.script.CRC32=de069188 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties new file mode 100644 index 0000000..564caf6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task3intTwo.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task3inttwo.Exam1task3intTwo +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml new file mode 100644 index 0000000..59d0105 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task3intTwo + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java new file mode 100644 index 0000000..acdb436 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3inttwo; + +/** + * + * @author FlagBg + */ +public class Exam1task3intTwo { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + System.out.println(d1 + "+" + d2 + "=" + (d1 + d2));// + System.out.println(d1 + "-" + d2 + "=" + (d1 - d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + + } + } + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task4/build.xml b/1401417015 AngelFlag/exam1task4/build.xml new file mode 100644 index 0000000..2cdc238 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task4. + + + diff --git a/1401417015 AngelFlag/exam1task4/manifest.mf b/1401417015 AngelFlag/exam1task4/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml new file mode 100644 index 0000000..9d535e9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties new file mode 100644 index 0000000..a280fb9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=63e4e26b +build.xml.script.CRC32=bc9a397b +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=63e4e26b +nbproject/build-impl.xml.script.CRC32=3cb83f00 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.properties b/1401417015 AngelFlag/exam1task4/nbproject/project.properties new file mode 100644 index 0000000..dfc0eed --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task4.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task4.Exam1task4 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.xml b/1401417015 AngelFlag/exam1task4/nbproject/project.xml new file mode 100644 index 0000000..8cfba78 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task4 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java new file mode 100644 index 0000000..1120a53 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task4; + +/** + * + * @author THE NET + */ +public class Exam1task4 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i, j; + i=10; j = i++; + System.out.println(j); // 10 + i=10; j = ++i; + System.out.println(j); // 11 + i=10; j = i--; + System.out.println(j); // 10 + i=10; j = --i; + System.out.println(j); // 9 + + } +} diff --git a/1401417015 AngelFlag/exam1task5/build.xml b/1401417015 AngelFlag/exam1task5/build.xml new file mode 100644 index 0000000..7754465 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task5. + + + diff --git a/1401417015 AngelFlag/exam1task5/manifest.mf b/1401417015 AngelFlag/exam1task5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml new file mode 100644 index 0000000..4d5c22b --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties new file mode 100644 index 0000000..2067c90 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=6bf76e4d +build.xml.script.CRC32=92a147ac +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=6bf76e4d +nbproject/build-impl.xml.script.CRC32=fc56e143 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.properties b/1401417015 AngelFlag/exam1task5/nbproject/project.properties new file mode 100644 index 0000000..1e4a1b8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task5.Exam1task5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.xml b/1401417015 AngelFlag/exam1task5/nbproject/project.xml new file mode 100644 index 0000000..80b9ecd --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task5 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java new file mode 100644 index 0000000..20d36c1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task5; + +/** + * + * @author THE NET + */ +public class Exam1task5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + float f =1.25f; + f+=5; + System.out.println(f); + f-=2; + System.out.println(f); + f*=10; + System.out.println(f); + f/=10; + System.out.println(f); + + // TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/exam1task6/build.xml b/1401417015 AngelFlag/exam1task6/build.xml new file mode 100644 index 0000000..4a770f6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task6. + + + diff --git a/1401417015 AngelFlag/exam1task6/manifest.mf b/1401417015 AngelFlag/exam1task6/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml new file mode 100644 index 0000000..c3dfea1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties new file mode 100644 index 0000000..0cc3976 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=73c3fa27 +build.xml.script.CRC32=e0ecc4d5 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=73c3fa27 +nbproject/build-impl.xml.script.CRC32=661485c7 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.properties b/1401417015 AngelFlag/exam1task6/nbproject/project.properties new file mode 100644 index 0000000..6db7e93 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task6.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task6.Exam1task6 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.xml b/1401417015 AngelFlag/exam1task6/nbproject/project.xml new file mode 100644 index 0000000..8cbb480 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task6 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/build.xml b/1401417015 AngelFlag/exam1task7/build.xml new file mode 100644 index 0000000..e8aa5d7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task7. + + + diff --git a/1401417015 AngelFlag/exam1task7/manifest.mf b/1401417015 AngelFlag/exam1task7/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml new file mode 100644 index 0000000..a690a3b --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties new file mode 100644 index 0000000..99802b7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=7bd07601 +build.xml.script.CRC32=ced7ba02 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=7bd07601 +nbproject/build-impl.xml.script.CRC32=a6fa5b84 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.properties b/1401417015 AngelFlag/exam1task7/nbproject/project.properties new file mode 100644 index 0000000..cf0ca23 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task7.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task7.Exam1task7 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.xml b/1401417015 AngelFlag/exam1task7/nbproject/project.xml new file mode 100644 index 0000000..eac5f4f --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task7 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java new file mode 100644 index 0000000..e53948f --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task7; + +/** + * + * @author THE NET + */ +public class Exam1task7 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; int s2 = 6; + System.out.println(s1==s2); + System.out.println(s1s2); + System.out.println(s1<=s2); + System.out.println(s1>=s2); + + } + +} diff --git a/1401417015 AngelFlag/exam1task8/build.xml b/1401417015 AngelFlag/exam1task8/build.xml new file mode 100644 index 0000000..7f4782a --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8. + + + diff --git a/1401417015 AngelFlag/exam1task8/manifest.mf b/1401417015 AngelFlag/exam1task8/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml new file mode 100644 index 0000000..d3f99f9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties new file mode 100644 index 0000000..6a1dcd8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0336b3c3 +build.xml.script.CRC32=aedd32de +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0336b3c3 +nbproject/build-impl.xml.script.CRC32=3822a7d3 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.properties b/1401417015 AngelFlag/exam1task8/nbproject/project.properties new file mode 100644 index 0000000..c0700b6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task8.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task8.Exam1task8 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.xml b/1401417015 AngelFlag/exam1task8/nbproject/project.xml new file mode 100644 index 0000000..929ac6c --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task8 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java new file mode 100644 index 0000000..b4ba6ca --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task8 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете i= "); + int i = scanner.nextInt(); + + System.out.print("Въведете j = "); + int j = scanner.nextInt(); + + scanner.close (); + System.out.println(i + j); + + } +} + diff --git a/1401417015 AngelFlag/exam1task8a/build.xml b/1401417015 AngelFlag/exam1task8a/build.xml new file mode 100644 index 0000000..067cc16 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8a. + + + diff --git a/1401417015 AngelFlag/exam1task8a/manifest.mf b/1401417015 AngelFlag/exam1task8a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml new file mode 100644 index 0000000..dec15af --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties new file mode 100644 index 0000000..806edee --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=e3149a2b +build.xml.script.CRC32=ed57595a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=e3149a2b +nbproject/build-impl.xml.script.CRC32=d56167ca +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.properties b/1401417015 AngelFlag/exam1task8a/nbproject/project.properties new file mode 100644 index 0000000..0570ca0 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task8a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task8a.Exam1task8a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.xml b/1401417015 AngelFlag/exam1task8a/nbproject/project.xml new file mode 100644 index 0000000..e81a050 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task8a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java new file mode 100644 index 0000000..a852541 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8a; + +/** + * + * @author THE NET + */ +public class Exam1task8a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; + short s2=6; + System.out.println(true && true); + System.out.println((s2>=s1) && (s1+1 ==s2)); + System.out.println(true || false); + System.out.println((s1s2)); + System.out.println(!(s1 + + + + + + + + + + Builds, tests, and runs the project exam1task9. + + + diff --git a/1401417015 AngelFlag/exam1task9/manifest.mf b/1401417015 AngelFlag/exam1task9/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml new file mode 100644 index 0000000..0d0e67f --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties new file mode 100644 index 0000000..c6ff1e9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0b253fe5 +build.xml.script.CRC32=80e64c09 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0b253fe5 +nbproject/build-impl.xml.script.CRC32=f8cc7990 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.properties b/1401417015 AngelFlag/exam1task9/nbproject/project.properties new file mode 100644 index 0000000..34cb88a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9.Exam1task9 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.xml b/1401417015 AngelFlag/exam1task9/nbproject/project.xml new file mode 100644 index 0000000..1fa2aee --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java new file mode 100644 index 0000000..2b91e92 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9 { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете две цели числа и низ: i1 i2 s1 = "); + int i1, i2; + String s; + i1 = scanner.nextInt(); + i2 = scanner.nextInt(); + s = scanner.next(); + + System.out.println(i1+i2); + System.out.println(s); + + scanner.close(); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9a/build.xml b/1401417015 AngelFlag/exam1task9a/build.xml new file mode 100644 index 0000000..ba7faac --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9a. + + + diff --git a/1401417015 AngelFlag/exam1task9a/manifest.mf b/1401417015 AngelFlag/exam1task9a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml new file mode 100644 index 0000000..f2d00b1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties new file mode 100644 index 0000000..194ea4a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=31110c5a +build.xml.script.CRC32=40d1ac97 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=31110c5a +nbproject/build-impl.xml.script.CRC32=5350db3d +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.properties b/1401417015 AngelFlag/exam1task9a/nbproject/project.properties new file mode 100644 index 0000000..6b8fa23 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9a.Exam1task9a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.xml b/1401417015 AngelFlag/exam1task9a/nbproject/project.xml new file mode 100644 index 0000000..2be55a7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java new file mode 100644 index 0000000..d675187 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9a; + +/** + * + * @author THE NET + */ +public class Exam1task9a { + + /** + * @param args the command line arguments + */ + private static void bigger(double d1, double d2) { + + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } +} + + public static void main(String[] args) { + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9b/build.xml b/1401417015 AngelFlag/exam1task9b/build.xml new file mode 100644 index 0000000..6b93dd8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9b. + + + diff --git a/1401417015 AngelFlag/exam1task9b/manifest.mf b/1401417015 AngelFlag/exam1task9b/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml new file mode 100644 index 0000000..48febd3 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties new file mode 100644 index 0000000..2109eea --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=29259830 +build.xml.script.CRC32=b8263768 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=29259830 +nbproject/build-impl.xml.script.CRC32=ae93b90c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.properties b/1401417015 AngelFlag/exam1task9b/nbproject/project.properties new file mode 100644 index 0000000..bb58fe8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9b.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9b.Exam1task9b +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.xml b/1401417015 AngelFlag/exam1task9b/nbproject/project.xml new file mode 100644 index 0000000..d1f1772 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9b + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java new file mode 100644 index 0000000..0293cba --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java @@ -0,0 +1,52 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9b; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9b { + + /** + * @param args the command line arguments + */ + public static void bigger(double d1, double d2) { + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } + } + public static void main(String[] args) + { + f(11,12); + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + Scanner scanner = new Scanner(System.in); + System.out.print("Въведете d1= "); + int i = scanner.nextInt(); + + System.out.print("Въведете d2 = "); + int j = scanner.nextInt(); + + scanner.close (); + if((i*j)>50); + System.out.println(i * j); + + } + private static void Falcon(double 28, double 3.4); + + System.out.println(a1*) + } +{ + +} + + +} diff --git a/1401417015 AngelFlag/exam1task9c/build.xml b/1401417015 AngelFlag/exam1task9c/build.xml new file mode 100644 index 0000000..08bef7c --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9c. + + + diff --git a/1401417015 AngelFlag/exam1task9c/manifest.mf b/1401417015 AngelFlag/exam1task9c/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml new file mode 100644 index 0000000..790965a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties new file mode 100644 index 0000000..765a39d --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=21361416 +build.xml.script.CRC32=595bbc02 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=21361416 +nbproject/build-impl.xml.script.CRC32=4cfd9adc +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.properties b/1401417015 AngelFlag/exam1task9c/nbproject/project.properties new file mode 100644 index 0000000..334528b --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9c.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9c.Exam1task9c +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.xml b/1401417015 AngelFlag/exam1task9c/nbproject/project.xml new file mode 100644 index 0000000..9548348 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9c + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java new file mode 100644 index 0000000..7e90dea --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java @@ -0,0 +1,35 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9c; + +/** + * + * @author THE NET + */ +public class Exam1task9c { + + /** + * @param d1 + * @param d2 + */ + public static void m(double d1, double d2){ + if (d1+d2> 20) + System.out.println((d1+d2)*(d1-d2)); + else + System.out.println((d1+d2)/5)); + + } + public static void main(String[] args) { + m(11,15); + m(5,11); + + } + public static void f(double a, double b){ + + + System.out.println(a*a + 2*(a-b*b)+7*b); + } +} diff --git a/1401417015 AngelFlag/exam2_1a/build.xml b/1401417015 AngelFlag/exam2_1a/build.xml new file mode 100644 index 0000000..7754b00 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1a. + + + diff --git a/1401417015 AngelFlag/exam2_1a/manifest.mf b/1401417015 AngelFlag/exam2_1a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml new file mode 100644 index 0000000..5baacf5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties new file mode 100644 index 0000000..f74b0fb --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=1ff04ee1 +build.xml.script.CRC32=5bd02908 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=1ff04ee1 +nbproject/build-impl.xml.script.CRC32=f45c0cd8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.properties b/1401417015 AngelFlag/exam2_1a/nbproject/project.properties new file mode 100644 index 0000000..2550bc7 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_1a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1a.Exam2_1a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.xml b/1401417015 AngelFlag/exam2_1a/nbproject/project.xml new file mode 100644 index 0000000..a2599bd --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_1a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java new file mode 100644 index 0000000..f1c6b0b --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1a; + +/** + * + * @author THE NET + */ +public class Exam2_1a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + while(i<11) + { + System.out.println(i); + i=i+1; + + // TODO code application logic here + } +} +} diff --git a/1401417015 AngelFlag/exam2_1c/build.xml b/1401417015 AngelFlag/exam2_1c/build.xml new file mode 100644 index 0000000..01c16fb --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1c. + + + diff --git a/1401417015 AngelFlag/exam2_1c/manifest.mf b/1401417015 AngelFlag/exam2_1c/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml new file mode 100644 index 0000000..48b5312 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties new file mode 100644 index 0000000..3b01543 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0fd756ad +build.xml.script.CRC32=07fd45e8 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0fd756ad +nbproject/build-impl.xml.script.CRC32=b96ac11f +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.properties b/1401417015 AngelFlag/exam2_1c/nbproject/project.properties new file mode 100644 index 0000000..38a724f --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_1c.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1c.Exam2_1c +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.xml b/1401417015 AngelFlag/exam2_1c/nbproject/project.xml new file mode 100644 index 0000000..f545d13 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_1c + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java new file mode 100644 index 0000000..071a91f --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1c; + +/** + * + * @author THE NET + */ +public class Exam2_1c { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + for(int i=1; i<91; i++){ + System.out.println(i); + + } +} + + } + diff --git a/1401417015 AngelFlag/exam2_2/build.xml b/1401417015 AngelFlag/exam2_2/build.xml new file mode 100644 index 0000000..accb390 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_2. + + + diff --git a/1401417015 AngelFlag/exam2_2/manifest.mf b/1401417015 AngelFlag/exam2_2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml new file mode 100644 index 0000000..f3aeb71 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties new file mode 100644 index 0000000..89a1978 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=465e91f2 +build.xml.script.CRC32=700d4eef +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=465e91f2 +nbproject/build-impl.xml.script.CRC32=95870d2f +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.properties b/1401417015 AngelFlag/exam2_2/nbproject/project.properties new file mode 100644 index 0000000..fa6b646 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_2.Exam2_2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.xml b/1401417015 AngelFlag/exam2_2/nbproject/project.xml new file mode 100644 index 0000000..11bcc70 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java new file mode 100644 index 0000000..05b9c25 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_2; + +/** + * + * @author THE NET + */ +public class Exam2_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/method/build.xml b/1401417015 AngelFlag/method/build.xml new file mode 100644 index 0000000..f19924c --- /dev/null +++ b/1401417015 AngelFlag/method/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project method. + + + diff --git a/1401417015 AngelFlag/method/manifest.mf b/1401417015 AngelFlag/method/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/method/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/method/nbproject/build-impl.xml b/1401417015 AngelFlag/method/nbproject/build-impl.xml new file mode 100644 index 0000000..41e7c01 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/method/nbproject/genfiles.properties b/1401417015 AngelFlag/method/nbproject/genfiles.properties new file mode 100644 index 0000000..ade1a48 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=30629669 +build.xml.script.CRC32=0a7ad8f0 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=30629669 +nbproject/build-impl.xml.script.CRC32=9e719cde +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/method/nbproject/project.properties b/1401417015 AngelFlag/method/nbproject/project.properties new file mode 100644 index 0000000..1d19e6d --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/method.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=method.Method +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/method/nbproject/project.xml b/1401417015 AngelFlag/method/nbproject/project.xml new file mode 100644 index 0000000..6b65c18 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + method + + + + + + + + + diff --git a/1401417015 AngelFlag/method/src/method/Method.java b/1401417015 AngelFlag/method/src/method/Method.java new file mode 100644 index 0000000..4bf6025 --- /dev/null +++ b/1401417015 AngelFlag/method/src/method/Method.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package method; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +import java.util.*; +public class Method { +public static final double FAVNUMBER = 1.6180; + +private String name; +private int weight; +private boolean hasOwner = false; +private byte age; +private long uniqueID; +private char favoriteChar; +private double speed; +private float height; + +protected static int numberofAnimals = 0; + +static Scanner userinput = new Scanner(System.in); + +public Animal P() { + numberofAnimals++; + + int sumofNumbers = 5+1; + System.out.println(private) +} + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/myWorld/build.xml b/1401417015 AngelFlag/myWorld/build.xml new file mode 100644 index 0000000..8ac948f --- /dev/null +++ b/1401417015 AngelFlag/myWorld/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project myWorld. + + + diff --git a/1401417015 AngelFlag/myWorld/manifest.mf b/1401417015 AngelFlag/myWorld/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml b/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml new file mode 100644 index 0000000..cdb394e --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties b/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties new file mode 100644 index 0000000..04fc822 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=81f28a0d +build.xml.script.CRC32=d53046b1 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=81f28a0d +nbproject/build-impl.xml.script.CRC32=e05ba570 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.properties b/1401417015 AngelFlag/myWorld/nbproject/project.properties new file mode 100644 index 0000000..a428c9a --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/myWorld.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=myworld.MyWorld +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.xml b/1401417015 AngelFlag/myWorld/nbproject/project.xml new file mode 100644 index 0000000..7a8ff38 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + myWorld + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java b/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java new file mode 100644 index 0000000..02884b8 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package myworld; + +/** + * + * @author THE NET + */ +public class Person { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Person Stoyan = new Person(); + stoyan.name = "Stoyan:"; + stoyan.age = 50; + + System.out.println("I am a person, my name is :" + name) + + + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/myWorld/src/myworld/Person.java b/1401417015 AngelFlag/myWorld/src/myworld/Person.java new file mode 100644 index 0000000..47a04c2 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/src/myworld/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package myworld; + +/** + * + * @author THE NET + */ +class Person { + +} diff --git a/1401417015 AngelFlag/upr1zad2intI=5/build.xml b/1401417015 AngelFlag/upr1zad2intI=5/build.xml new file mode 100644 index 0000000..f911cac --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project upr1zad2intI=5. + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml new file mode 100644 index 0000000..7e27ba2 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties new file mode 100644 index 0000000..cf80e05 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=bbd82aac +build.xml.script.CRC32=84847ed1 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=bbd82aac +nbproject/build-impl.xml.script.CRC32=cadce331 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties new file mode 100644 index 0000000..2683611 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/upr1zad2intI_5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=upr1zad2inti.pkg5.Upr1zad2intI5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml new file mode 100644 index 0000000..a6e181e --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + upr1zad2intI=5 + + + + + + + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java new file mode 100644 index 0000000..86ea1f9 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr1zad2inti.pkg5; + +/** + * + * @author THE NET + */ +public class Upr1zad2intI5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 2; + i = i + 19; + System.out.println(i); + } +} From e7e8b016e01adee6e819074878e40fad2827db80 Mon Sep 17 00:00:00 2001 From: THE NET Date: Sun, 30 Nov 2014 11:15:41 +0200 Subject: [PATCH 04/41] that is task 11, exam 1. --- .gitignore | 49 +- 1401417015 AngelFlag/2_1/build.xml | 73 + 1401417015 AngelFlag/2_1/manifest.mf | 3 + .../2_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../2_1/nbproject/genfiles.properties | 8 + .../2_1/nbproject/project.properties | 73 + .../2_1/nbproject/project.xml | 15 + 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 23 + .../Exam2_1bdowhile/build.xml | 73 + .../Exam2_1bdowhile/manifest.mf | 3 + .../Exam2_1bdowhile/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../Exam2_1bdowhile/nbproject/project.xml | 15 + .../src/exam2_1bdowhile/Exam2_1bdowhile.java | 25 + 1401417015 AngelFlag/HelloWorld.java | 30 + 1401417015 AngelFlag/bigdecimal/build.xml | 73 + 1401417015 AngelFlag/bigdecimal/manifest.mf | 3 + .../bigdecimal/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../bigdecimal/nbproject/genfiles.properties | 8 + .../bigdecimal/nbproject/project.properties | 73 + .../bigdecimal/nbproject/project.xml | 15 + .../bigdecimal/src/bigdecimal/Bigdecimal.java | 29 + 1401417015 AngelFlag/course/build.xml | 73 + 1401417015 AngelFlag/course/manifest.mf | 3 + .../course/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../course/nbproject/genfiles.properties | 8 + .../course/nbproject/project.properties | 73 + .../course/nbproject/project.xml | 15 + .../course/src/course/Course.java | 48 + 1401417015 AngelFlag/datatype/build.xml | 73 + 1401417015 AngelFlag/datatype/manifest.mf | 3 + .../datatype/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../datatype/nbproject/genfiles.properties | 8 + .../datatype/nbproject/project.properties | 73 + .../datatype/nbproject/project.xml | 15 + .../datatype/src/datatype/Datatype.java | 43 + 1401417015 AngelFlag/exam1_10/build.xml | 73 + 1401417015 AngelFlag/exam1_10/manifest.mf | 3 + .../exam1_10/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1_10/nbproject/genfiles.properties | 8 + .../exam1_10/nbproject/project.properties | 73 + .../exam1_10/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam1task3.2/build.xml | 73 + 1401417015 AngelFlag/exam1task3.2/manifest.mf | 3 + .../exam1task3.2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../exam1task3.2/nbproject/project.properties | 73 + .../exam1task3.2/nbproject/project.xml | 15 + .../src/exam1task3/pkg2/Exam1task32.java | 33 + .../exam1task3intTwo/build.xml | 73 + .../exam1task3intTwo/manifest.mf | 3 + .../exam1task3intTwo/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../exam1task3intTwo/nbproject/project.xml | 15 + .../exam1task3inttwo/Exam1task3intTwo.java | 28 + 1401417015 AngelFlag/exam1task4/build.xml | 73 + 1401417015 AngelFlag/exam1task4/manifest.mf | 3 + .../exam1task4/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task4/nbproject/genfiles.properties | 8 + .../exam1task4/nbproject/project.properties | 73 + .../exam1task4/nbproject/project.xml | 15 + .../exam1task4/src/exam1task4/Exam1task4.java | 29 + 1401417015 AngelFlag/exam1task5/build.xml | 73 + 1401417015 AngelFlag/exam1task5/manifest.mf | 3 + .../exam1task5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task5/nbproject/genfiles.properties | 8 + .../exam1task5/nbproject/project.properties | 73 + .../exam1task5/nbproject/project.xml | 15 + .../exam1task5/src/exam1task5/Exam1task5.java | 30 + 1401417015 AngelFlag/exam1task6/build.xml | 73 + 1401417015 AngelFlag/exam1task6/manifest.mf | 3 + .../exam1task6/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task6/nbproject/genfiles.properties | 8 + .../exam1task6/nbproject/project.properties | 73 + .../exam1task6/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam1task7/build.xml | 73 + 1401417015 AngelFlag/exam1task7/manifest.mf | 3 + .../exam1task7/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task7/nbproject/genfiles.properties | 8 + .../exam1task7/nbproject/project.properties | 73 + .../exam1task7/nbproject/project.xml | 15 + .../exam1task7/src/exam1task7/Exam1task7.java | 27 + 1401417015 AngelFlag/exam1task8/build.xml | 73 + 1401417015 AngelFlag/exam1task8/manifest.mf | 3 + .../exam1task8/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task8/nbproject/genfiles.properties | 8 + .../exam1task8/nbproject/project.properties | 73 + .../exam1task8/nbproject/project.xml | 15 + .../exam1task8/src/exam1task8/Exam1task8.java | 32 + 1401417015 AngelFlag/exam1task8a/build.xml | 73 + 1401417015 AngelFlag/exam1task8a/manifest.mf | 3 + .../exam1task8a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task8a/nbproject/genfiles.properties | 8 + .../exam1task8a/nbproject/project.properties | 73 + .../exam1task8a/nbproject/project.xml | 15 + .../src/exam1task8a/Exam1task8a.java | 32 + 1401417015 AngelFlag/exam1task9/build.xml | 73 + 1401417015 AngelFlag/exam1task9/manifest.mf | 3 + .../exam1task9/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9/nbproject/genfiles.properties | 8 + .../exam1task9/nbproject/project.properties | 73 + .../exam1task9/nbproject/project.xml | 15 + .../exam1task9/src/exam1task9/Exam1task9.java | 36 + 1401417015 AngelFlag/exam1task9a/build.xml | 73 + 1401417015 AngelFlag/exam1task9a/manifest.mf | 3 + .../exam1task9a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9a/nbproject/genfiles.properties | 8 + .../exam1task9a/nbproject/project.properties | 73 + .../exam1task9a/nbproject/project.xml | 15 + .../src/exam1task9a/Exam1task9a.java | 34 + 1401417015 AngelFlag/exam1task9b/build.xml | 73 + 1401417015 AngelFlag/exam1task9b/manifest.mf | 3 + .../exam1task9b/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9b/nbproject/genfiles.properties | 8 + .../exam1task9b/nbproject/project.properties | 73 + .../exam1task9b/nbproject/project.xml | 15 + .../src/exam1task9b/Exam1task9b.java | 52 + 1401417015 AngelFlag/exam1task9c/build.xml | 73 + 1401417015 AngelFlag/exam1task9c/manifest.mf | 3 + .../exam1task9c/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1task9c/nbproject/genfiles.properties | 8 + .../exam1task9c/nbproject/project.properties | 73 + .../exam1task9c/nbproject/project.xml | 15 + .../src/exam1task9c/Exam1task9c.java | 35 + 1401417015 AngelFlag/exam2_1a/build.xml | 73 + 1401417015 AngelFlag/exam2_1a/manifest.mf | 3 + .../exam2_1a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_1a/nbproject/genfiles.properties | 8 + .../exam2_1a/nbproject/project.properties | 73 + .../exam2_1a/nbproject/project.xml | 15 + .../exam2_1a/src/exam2_1a/Exam2_1a.java | 27 + 1401417015 AngelFlag/exam2_1c/build.xml | 73 + 1401417015 AngelFlag/exam2_1c/manifest.mf | 3 + .../exam2_1c/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_1c/nbproject/genfiles.properties | 8 + .../exam2_1c/nbproject/project.properties | 73 + .../exam2_1c/nbproject/project.xml | 15 + .../exam2_1c/src/exam2_1c/Exam2_1c.java | 25 + 1401417015 AngelFlag/exam2_2/build.xml | 73 + 1401417015 AngelFlag/exam2_2/manifest.mf | 3 + .../exam2_2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_2/nbproject/genfiles.properties | 8 + .../exam2_2/nbproject/project.properties | 73 + .../exam2_2/nbproject/project.xml | 15 + .../exam2_2/src/exam2_2/Exam2_2.java | 21 + 1401417015 AngelFlag/method/build.xml | 73 + 1401417015 AngelFlag/method/manifest.mf | 3 + .../method/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../method/nbproject/genfiles.properties | 8 + .../method/nbproject/project.properties | 73 + .../method/nbproject/project.xml | 15 + .../method/src/method/Method.java | 44 + 1401417015 AngelFlag/myWorld/build.xml | 73 + 1401417015 AngelFlag/myWorld/manifest.mf | 3 + .../myWorld/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../myWorld/nbproject/genfiles.properties | 8 + .../myWorld/nbproject/project.properties | 73 + .../myWorld/nbproject/project.xml | 15 + .../myWorld/src/myworld/MyWorld.java | 30 + .../myWorld/src/myworld/Person.java | 14 + 1401417015 AngelFlag/upr1zad2intI=5/build.xml | 73 + .../upr1zad2intI=5/manifest.mf | 3 + .../upr1zad2intI=5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../upr1zad2intI=5/nbproject/project.xml | 15 + .../src/upr1zad2inti/pkg5/Upr1zad2intI5.java | 22 + 169 files changed, 38837 insertions(+), 1 deletion(-) create mode 100644 1401417015 AngelFlag/2_1/build.xml create mode 100644 1401417015 AngelFlag/2_1/manifest.mf create mode 100644 1401417015 AngelFlag/2_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/2_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/2_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/2_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/build.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java create mode 100644 1401417015 AngelFlag/HelloWorld.java create mode 100644 1401417015 AngelFlag/bigdecimal/build.xml create mode 100644 1401417015 AngelFlag/bigdecimal/manifest.mf create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.properties create mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.xml create mode 100644 1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java create mode 100644 1401417015 AngelFlag/course/build.xml create mode 100644 1401417015 AngelFlag/course/manifest.mf create mode 100644 1401417015 AngelFlag/course/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/course/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/course/nbproject/project.properties create mode 100644 1401417015 AngelFlag/course/nbproject/project.xml create mode 100644 1401417015 AngelFlag/course/src/course/Course.java create mode 100644 1401417015 AngelFlag/datatype/build.xml create mode 100644 1401417015 AngelFlag/datatype/manifest.mf create mode 100644 1401417015 AngelFlag/datatype/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/datatype/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/datatype/nbproject/project.properties create mode 100644 1401417015 AngelFlag/datatype/nbproject/project.xml create mode 100644 1401417015 AngelFlag/datatype/src/datatype/Datatype.java create mode 100644 1401417015 AngelFlag/exam1_10/build.xml create mode 100644 1401417015 AngelFlag/exam1_10/manifest.mf create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/build.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java create mode 100644 1401417015 AngelFlag/exam1task3intTwo/build.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java create mode 100644 1401417015 AngelFlag/exam1task4/build.xml create mode 100644 1401417015 AngelFlag/exam1task4/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java create mode 100644 1401417015 AngelFlag/exam1task5/build.xml create mode 100644 1401417015 AngelFlag/exam1task5/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java create mode 100644 1401417015 AngelFlag/exam1task6/build.xml create mode 100644 1401417015 AngelFlag/exam1task6/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task7/build.xml create mode 100644 1401417015 AngelFlag/exam1task7/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java create mode 100644 1401417015 AngelFlag/exam1task8/build.xml create mode 100644 1401417015 AngelFlag/exam1task8/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java create mode 100644 1401417015 AngelFlag/exam1task8a/build.xml create mode 100644 1401417015 AngelFlag/exam1task8a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java create mode 100644 1401417015 AngelFlag/exam1task9/build.xml create mode 100644 1401417015 AngelFlag/exam1task9/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java create mode 100644 1401417015 AngelFlag/exam1task9a/build.xml create mode 100644 1401417015 AngelFlag/exam1task9a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java create mode 100644 1401417015 AngelFlag/exam1task9b/build.xml create mode 100644 1401417015 AngelFlag/exam1task9b/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java create mode 100644 1401417015 AngelFlag/exam1task9c/build.xml create mode 100644 1401417015 AngelFlag/exam1task9c/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java create mode 100644 1401417015 AngelFlag/exam2_1a/build.xml create mode 100644 1401417015 AngelFlag/exam2_1a/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java create mode 100644 1401417015 AngelFlag/exam2_1c/build.xml create mode 100644 1401417015 AngelFlag/exam2_1c/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java create mode 100644 1401417015 AngelFlag/exam2_2/build.xml create mode 100644 1401417015 AngelFlag/exam2_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java create mode 100644 1401417015 AngelFlag/method/build.xml create mode 100644 1401417015 AngelFlag/method/manifest.mf create mode 100644 1401417015 AngelFlag/method/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/method/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/method/nbproject/project.properties create mode 100644 1401417015 AngelFlag/method/nbproject/project.xml create mode 100644 1401417015 AngelFlag/method/src/method/Method.java create mode 100644 1401417015 AngelFlag/myWorld/build.xml create mode 100644 1401417015 AngelFlag/myWorld/manifest.mf create mode 100644 1401417015 AngelFlag/myWorld/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/myWorld/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/myWorld/nbproject/project.properties create mode 100644 1401417015 AngelFlag/myWorld/nbproject/project.xml create mode 100644 1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java create mode 100644 1401417015 AngelFlag/myWorld/src/myworld/Person.java create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/build.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/manifest.mf create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java diff --git a/.gitignore b/.gitignore index 0f19428..41205db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,49 @@ /1401417003_KalinDimov/NewProject/nbproject/private/ -/1401417003_KalinDimov/NewProject/build/ \ No newline at end of file +/1401417003_KalinDimov/NewProject/build/ +/0000000000_StoyanCheresharov/DataTypes/nbproject/private/ +/0000000000_StoyanCheresharov/DataTypes/build/ +/1401417015 AngelFlag/datatype/nbproject/private/ +/1401417015 AngelFlag/datatype/build/ +/1401417015 AngelFlag/bigdecimal/nbproject/private/ +/1401417015 AngelFlag/bigdecimal/build/ +/1401417015 AngelFlag/method/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/build/ +/1401417015 AngelFlag/exam1task3intTwo/nbproject/private/ +/1401417015 AngelFlag/exam1task3intTwo/build/ +/1401417015 AngelFlag/exam1task4/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/build/ +/1401417015 AngelFlag/exam1task4/build/ +/1401417015 AngelFlag/exam1task5/nbproject/private/ +/1401417015 AngelFlag/exam1task5/build/ +/1401417015 AngelFlag/exam1task6/nbproject/private/ +/1401417015 AngelFlag/exam1task6/build/ +/1401417015 AngelFlag/exam1task7/nbproject/private/ +/1401417015 AngelFlag/exam1task7/build/ +/1401417015 AngelFlag/exam1task8/nbproject/private/ +/1401417015 AngelFlag/exam1task8/build/ +/1401417015 AngelFlag/exam1task9/nbproject/private/ +/1401417015 AngelFlag/exam1task9/build/ +/1401417015 AngelFlag/exam1task8a/nbproject/private/ +/1401417015 AngelFlag/exam1task8a/build/ +/1401417015 AngelFlag/exam1task9a/nbproject/private/ +/1401417015 AngelFlag/exam1task9a/build/ +/1401417015 AngelFlag/exam1task9b/nbproject/private/ +/1401417015 AngelFlag/exam1task9b/build/ +/1401417015 AngelFlag/exam1task9c/nbproject/private/ +/1401417015 AngelFlag/exam1task9c/build/ +/1401417015 AngelFlag/exam1_10/nbproject/private/ +/1401417015 AngelFlag/exam1_10/build/ +/1401417015 AngelFlag/2_1/nbproject/private/ +/1401417015 AngelFlag/2_1/build/ +/1401417015 AngelFlag/exam2_2/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/build/ +/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/private/ +/1401417015 AngelFlag/Exam2_1bdowhile/build/ +/1401417015 AngelFlag/exam2_1c/nbproject/private/ +/1401417015 AngelFlag/exam2_1c/build/ +/1401417015 AngelFlag/course/nbproject/private/ +/1401417015 AngelFlag/course/build/ +/1401417015 AngelFlag/myWorld/nbproject/private/ \ No newline at end of file diff --git a/1401417015 AngelFlag/2_1/build.xml b/1401417015 AngelFlag/2_1/build.xml new file mode 100644 index 0000000..e38caea --- /dev/null +++ b/1401417015 AngelFlag/2_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project 2_1. + + + diff --git a/1401417015 AngelFlag/2_1/manifest.mf b/1401417015 AngelFlag/2_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/2_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/2_1/nbproject/build-impl.xml b/1401417015 AngelFlag/2_1/nbproject/build-impl.xml new file mode 100644 index 0000000..7d875f2 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/2_1/nbproject/genfiles.properties b/1401417015 AngelFlag/2_1/nbproject/genfiles.properties new file mode 100644 index 0000000..2dde524 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=acce3b89 +build.xml.script.CRC32=aa102bea +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=acce3b89 +nbproject/build-impl.xml.script.CRC32=5e0a35e6 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/2_1/nbproject/project.properties b/1401417015 AngelFlag/2_1/nbproject/project.properties new file mode 100644 index 0000000..5eb4c7f --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/2_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=pkg2_1.Main +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/2_1/nbproject/project.xml b/1401417015 AngelFlag/2_1/nbproject/project.xml new file mode 100644 index 0000000..9e089d7 --- /dev/null +++ b/1401417015 AngelFlag/2_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + 2_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java new file mode 100644 index 0000000..4e66417 --- /dev/null +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -0,0 +1,23 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package pkg2_1; +/** + * + * @author THE NET + */ +public class Main { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i=1; + while(i<15) + { + System.out.println(i); + i= i+1; +// TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/build.xml b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml new file mode 100644 index 0000000..c564efc --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Exam2_1bdowhile. + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml new file mode 100644 index 0000000..8c3df33 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties new file mode 100644 index 0000000..43ca841 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=c353d51d +build.xml.script.CRC32=e3b46deb +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=c353d51d +nbproject/build-impl.xml.script.CRC32=c2df34a9 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties new file mode 100644 index 0000000..50f8641 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/Exam2_1bdowhile.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1bdowhile.Exam2_1bdowhile +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml new file mode 100644 index 0000000..38e54e8 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + Exam2_1bdowhile + + + + + + + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java new file mode 100644 index 0000000..dae7e03 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1bdowhile; + +/** + * + * @author THE NET + */ +public class Exam2_1bdowhile { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + do{System.out.println(i); + i=i+1; + } + while (i<11); + } + +} diff --git a/1401417015 AngelFlag/HelloWorld.java b/1401417015 AngelFlag/HelloWorld.java new file mode 100644 index 0000000..bebaa62 --- /dev/null +++ b/1401417015 AngelFlag/HelloWorld.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package hello.world; + +import static java.lang.Compiler.command; + +/** + * + * @author Flag + */ +class HelloWorld { + + public static void main(String[] args) { + System.out.println("Hello world") ; + System.out.println("Hello Angel"); + printLogo(); + } + public static void printLogo(){ + System.out.println("Sun Microsystems"); + System.out.println("www.sun.com"); + angelBy(); + } + public static void angelBy(){ + System.out.println("NameAb"); + + } +} diff --git a/1401417015 AngelFlag/bigdecimal/build.xml b/1401417015 AngelFlag/bigdecimal/build.xml new file mode 100644 index 0000000..b371ba2 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project bigdecimal. + + + diff --git a/1401417015 AngelFlag/bigdecimal/manifest.mf b/1401417015 AngelFlag/bigdecimal/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml b/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml new file mode 100644 index 0000000..674420c --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties b/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties new file mode 100644 index 0000000..e2784d3 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=618fbcbe +build.xml.script.CRC32=90d896f6 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=618fbcbe +nbproject/build-impl.xml.script.CRC32=8a487ec2 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.properties b/1401417015 AngelFlag/bigdecimal/nbproject/project.properties new file mode 100644 index 0000000..a41dd83 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/bigdecimal.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=bigdecimal.Bigdecimal +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.xml b/1401417015 AngelFlag/bigdecimal/nbproject/project.xml new file mode 100644 index 0000000..da29dda --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + bigdecimal + + + + + + + + + diff --git a/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java new file mode 100644 index 0000000..cc7888e --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package bigdecimal; + +/** + * + * @author THE NET + */ +import java.math.BigDecimal; +public class Bigdecimal { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double sum = 0.0d; + BigDecimal bdValue = new BigDecimal("0.1"); + BigDecimal bdSum = new BigDecimal("0.0"); + for(int i=1; i<=10; i++) { + sum += 0.1d; + bdSum = bdSum.add(bdValue); +} + System.out.println("Double sum is: " + sum); + System.out.println("BigDecimal sum is: " + bdSum); + + } +} diff --git a/1401417015 AngelFlag/course/build.xml b/1401417015 AngelFlag/course/build.xml new file mode 100644 index 0000000..28ffcb3 --- /dev/null +++ b/1401417015 AngelFlag/course/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project course. + + + diff --git a/1401417015 AngelFlag/course/manifest.mf b/1401417015 AngelFlag/course/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/course/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/course/nbproject/build-impl.xml b/1401417015 AngelFlag/course/nbproject/build-impl.xml new file mode 100644 index 0000000..f71de41 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/course/nbproject/genfiles.properties b/1401417015 AngelFlag/course/nbproject/genfiles.properties new file mode 100644 index 0000000..46296b5 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8948245e +build.xml.script.CRC32=8a3e2cbe +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8948245e +nbproject/build-impl.xml.script.CRC32=4f5680da +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/course/nbproject/project.properties b/1401417015 AngelFlag/course/nbproject/project.properties new file mode 100644 index 0000000..063c409 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/course.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=course.Course +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/course/nbproject/project.xml b/1401417015 AngelFlag/course/nbproject/project.xml new file mode 100644 index 0000000..cb8db17 --- /dev/null +++ b/1401417015 AngelFlag/course/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + course + + + + + + + + + diff --git a/1401417015 AngelFlag/course/src/course/Course.java b/1401417015 AngelFlag/course/src/course/Course.java new file mode 100644 index 0000000..5d65ed6 --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Course.java @@ -0,0 +1,48 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +import java.util.Scanner; + +public class Course { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner Keyboard= new Scanner(System.in); + boolean exit = false; + + do { + System.out.println("type 'exit' to exit this program..."); + input = Keyboard.nextLine(); + if(input.equals("exit")){ + exit = true; + }while(exit == false); + + + } + }while(exit == false); + System.out.println("Goodbye"); + + } + } + + Boolean hello = true; + + while(hello) + { + System.out.println("Hello"); + hello = false; + + } + } + + \ No newline at end of file diff --git a/1401417015 AngelFlag/datatype/build.xml b/1401417015 AngelFlag/datatype/build.xml new file mode 100644 index 0000000..a3a8dae --- /dev/null +++ b/1401417015 AngelFlag/datatype/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project datatype. + + + diff --git a/1401417015 AngelFlag/datatype/manifest.mf b/1401417015 AngelFlag/datatype/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/datatype/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/datatype/nbproject/build-impl.xml b/1401417015 AngelFlag/datatype/nbproject/build-impl.xml new file mode 100644 index 0000000..5ec9fa9 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/datatype/nbproject/genfiles.properties b/1401417015 AngelFlag/datatype/nbproject/genfiles.properties new file mode 100644 index 0000000..5f59edb --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=29b44223 +build.xml.script.CRC32=2b73bf7e +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=29b44223 +nbproject/build-impl.xml.script.CRC32=5fdc240a +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/datatype/nbproject/project.properties b/1401417015 AngelFlag/datatype/nbproject/project.properties new file mode 100644 index 0000000..94198f5 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/datatype.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=datatype.Datatype +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/datatype/nbproject/project.xml b/1401417015 AngelFlag/datatype/nbproject/project.xml new file mode 100644 index 0000000..934e5a8 --- /dev/null +++ b/1401417015 AngelFlag/datatype/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + datatype + + + + + + + + + diff --git a/1401417015 AngelFlag/datatype/src/datatype/Datatype.java b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java new file mode 100644 index 0000000..4dedf36 --- /dev/null +++ b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java @@ -0,0 +1,43 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package datatype; + +import java.io.IOException; +import java.util.*; + + public class Datatype { + + public static void main(String[] args) throws IOException { + + byte myByte = 2; + short myShort = 257; + int myInt = -123; + long myLong = 123L; + float myFloat = 2.34F; + double myDouble =2.54; + char myChar = 'c'; + boolean myBoolean = true; //false; + String myName = " Stoyan"; + + System.out.println(myName); + System.out.print(myName); + + int ch; + ch= System.in.read(); + { + double sum = 0.0; + for(int i=1; i<=10; i++) + { + sum += 0.1; + { +System.out.println(sum); + } + } + + } + }} + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1_10/build.xml b/1401417015 AngelFlag/exam1_10/build.xml new file mode 100644 index 0000000..31bc0db --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1_10. + + + diff --git a/1401417015 AngelFlag/exam1_10/manifest.mf b/1401417015 AngelFlag/exam1_10/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml new file mode 100644 index 0000000..d2c9fe3 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties new file mode 100644 index 0000000..c0a9292 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8e72f6a1 +build.xml.script.CRC32=90833347 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8e72f6a1 +nbproject/build-impl.xml.script.CRC32=1c46fc17 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.properties b/1401417015 AngelFlag/exam1_10/nbproject/project.properties new file mode 100644 index 0000000..c7a351a --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1_10.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1_10.Exam1_10 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.xml b/1401417015 AngelFlag/exam1_10/nbproject/project.xml new file mode 100644 index 0000000..f583e68 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1_10 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/build.xml b/1401417015 AngelFlag/exam1task3.2/build.xml new file mode 100644 index 0000000..b594a76 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3.2. + + + diff --git a/1401417015 AngelFlag/exam1task3.2/manifest.mf b/1401417015 AngelFlag/exam1task3.2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml new file mode 100644 index 0000000..89deda9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties new file mode 100644 index 0000000..0f8c5ad --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=aa744994 +build.xml.script.CRC32=f6a8db23 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=aa744994 +nbproject/build-impl.xml.script.CRC32=58519fe9 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties new file mode 100644 index 0000000..7893a5e --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task3.2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task3.pkg2.Exam1task32 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml new file mode 100644 index 0000000..a1bdeb9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task3.2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java new file mode 100644 index 0000000..6d4bfdd --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3.pkg2; + +/** + * + * @author THE NET + */ +public class Exam1task32 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + m(d1,d2); + m(d2 , d1); + m(2.0,1.2); + + } + public static void m(double d1, double d2){ + + System.out.println(d1 + "+" + d2 +"=" + (d1+d2));//l + System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + +} +} diff --git a/1401417015 AngelFlag/exam1task3intTwo/build.xml b/1401417015 AngelFlag/exam1task3intTwo/build.xml new file mode 100644 index 0000000..a28f87e --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3intTwo. + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/manifest.mf b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml new file mode 100644 index 0000000..e0a1e75 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties new file mode 100644 index 0000000..87fc8aa --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=ee924b3e +build.xml.script.CRC32=d8ac396d +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=ee924b3e +nbproject/build-impl.xml.script.CRC32=de069188 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties new file mode 100644 index 0000000..564caf6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task3intTwo.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task3inttwo.Exam1task3intTwo +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml new file mode 100644 index 0000000..59d0105 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task3intTwo + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java new file mode 100644 index 0000000..acdb436 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3inttwo; + +/** + * + * @author FlagBg + */ +public class Exam1task3intTwo { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + System.out.println(d1 + "+" + d2 + "=" + (d1 + d2));// + System.out.println(d1 + "-" + d2 + "=" + (d1 - d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + + } + } + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task4/build.xml b/1401417015 AngelFlag/exam1task4/build.xml new file mode 100644 index 0000000..2cdc238 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task4. + + + diff --git a/1401417015 AngelFlag/exam1task4/manifest.mf b/1401417015 AngelFlag/exam1task4/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml new file mode 100644 index 0000000..9d535e9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties new file mode 100644 index 0000000..a280fb9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=63e4e26b +build.xml.script.CRC32=bc9a397b +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=63e4e26b +nbproject/build-impl.xml.script.CRC32=3cb83f00 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.properties b/1401417015 AngelFlag/exam1task4/nbproject/project.properties new file mode 100644 index 0000000..dfc0eed --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task4.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task4.Exam1task4 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.xml b/1401417015 AngelFlag/exam1task4/nbproject/project.xml new file mode 100644 index 0000000..8cfba78 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task4 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java new file mode 100644 index 0000000..1120a53 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task4; + +/** + * + * @author THE NET + */ +public class Exam1task4 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i, j; + i=10; j = i++; + System.out.println(j); // 10 + i=10; j = ++i; + System.out.println(j); // 11 + i=10; j = i--; + System.out.println(j); // 10 + i=10; j = --i; + System.out.println(j); // 9 + + } +} diff --git a/1401417015 AngelFlag/exam1task5/build.xml b/1401417015 AngelFlag/exam1task5/build.xml new file mode 100644 index 0000000..7754465 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task5. + + + diff --git a/1401417015 AngelFlag/exam1task5/manifest.mf b/1401417015 AngelFlag/exam1task5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml new file mode 100644 index 0000000..4d5c22b --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties new file mode 100644 index 0000000..2067c90 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=6bf76e4d +build.xml.script.CRC32=92a147ac +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=6bf76e4d +nbproject/build-impl.xml.script.CRC32=fc56e143 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.properties b/1401417015 AngelFlag/exam1task5/nbproject/project.properties new file mode 100644 index 0000000..1e4a1b8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task5.Exam1task5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.xml b/1401417015 AngelFlag/exam1task5/nbproject/project.xml new file mode 100644 index 0000000..80b9ecd --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task5 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java new file mode 100644 index 0000000..20d36c1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task5; + +/** + * + * @author THE NET + */ +public class Exam1task5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + float f =1.25f; + f+=5; + System.out.println(f); + f-=2; + System.out.println(f); + f*=10; + System.out.println(f); + f/=10; + System.out.println(f); + + // TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/exam1task6/build.xml b/1401417015 AngelFlag/exam1task6/build.xml new file mode 100644 index 0000000..4a770f6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task6. + + + diff --git a/1401417015 AngelFlag/exam1task6/manifest.mf b/1401417015 AngelFlag/exam1task6/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml new file mode 100644 index 0000000..c3dfea1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties new file mode 100644 index 0000000..0cc3976 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=73c3fa27 +build.xml.script.CRC32=e0ecc4d5 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=73c3fa27 +nbproject/build-impl.xml.script.CRC32=661485c7 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.properties b/1401417015 AngelFlag/exam1task6/nbproject/project.properties new file mode 100644 index 0000000..6db7e93 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task6.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task6.Exam1task6 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.xml b/1401417015 AngelFlag/exam1task6/nbproject/project.xml new file mode 100644 index 0000000..8cbb480 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task6 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/build.xml b/1401417015 AngelFlag/exam1task7/build.xml new file mode 100644 index 0000000..e8aa5d7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task7. + + + diff --git a/1401417015 AngelFlag/exam1task7/manifest.mf b/1401417015 AngelFlag/exam1task7/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml new file mode 100644 index 0000000..a690a3b --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties new file mode 100644 index 0000000..99802b7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=7bd07601 +build.xml.script.CRC32=ced7ba02 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=7bd07601 +nbproject/build-impl.xml.script.CRC32=a6fa5b84 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.properties b/1401417015 AngelFlag/exam1task7/nbproject/project.properties new file mode 100644 index 0000000..cf0ca23 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task7.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task7.Exam1task7 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.xml b/1401417015 AngelFlag/exam1task7/nbproject/project.xml new file mode 100644 index 0000000..eac5f4f --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task7 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java new file mode 100644 index 0000000..e53948f --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task7; + +/** + * + * @author THE NET + */ +public class Exam1task7 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; int s2 = 6; + System.out.println(s1==s2); + System.out.println(s1s2); + System.out.println(s1<=s2); + System.out.println(s1>=s2); + + } + +} diff --git a/1401417015 AngelFlag/exam1task8/build.xml b/1401417015 AngelFlag/exam1task8/build.xml new file mode 100644 index 0000000..7f4782a --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8. + + + diff --git a/1401417015 AngelFlag/exam1task8/manifest.mf b/1401417015 AngelFlag/exam1task8/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml new file mode 100644 index 0000000..d3f99f9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties new file mode 100644 index 0000000..6a1dcd8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0336b3c3 +build.xml.script.CRC32=aedd32de +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0336b3c3 +nbproject/build-impl.xml.script.CRC32=3822a7d3 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.properties b/1401417015 AngelFlag/exam1task8/nbproject/project.properties new file mode 100644 index 0000000..c0700b6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task8.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task8.Exam1task8 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.xml b/1401417015 AngelFlag/exam1task8/nbproject/project.xml new file mode 100644 index 0000000..929ac6c --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task8 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java new file mode 100644 index 0000000..b4ba6ca --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task8 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете i= "); + int i = scanner.nextInt(); + + System.out.print("Въведете j = "); + int j = scanner.nextInt(); + + scanner.close (); + System.out.println(i + j); + + } +} + diff --git a/1401417015 AngelFlag/exam1task8a/build.xml b/1401417015 AngelFlag/exam1task8a/build.xml new file mode 100644 index 0000000..067cc16 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8a. + + + diff --git a/1401417015 AngelFlag/exam1task8a/manifest.mf b/1401417015 AngelFlag/exam1task8a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml new file mode 100644 index 0000000..dec15af --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties new file mode 100644 index 0000000..806edee --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=e3149a2b +build.xml.script.CRC32=ed57595a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=e3149a2b +nbproject/build-impl.xml.script.CRC32=d56167ca +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.properties b/1401417015 AngelFlag/exam1task8a/nbproject/project.properties new file mode 100644 index 0000000..0570ca0 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task8a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task8a.Exam1task8a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.xml b/1401417015 AngelFlag/exam1task8a/nbproject/project.xml new file mode 100644 index 0000000..e81a050 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task8a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java new file mode 100644 index 0000000..a852541 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8a; + +/** + * + * @author THE NET + */ +public class Exam1task8a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; + short s2=6; + System.out.println(true && true); + System.out.println((s2>=s1) && (s1+1 ==s2)); + System.out.println(true || false); + System.out.println((s1s2)); + System.out.println(!(s1 + + + + + + + + + + Builds, tests, and runs the project exam1task9. + + + diff --git a/1401417015 AngelFlag/exam1task9/manifest.mf b/1401417015 AngelFlag/exam1task9/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml new file mode 100644 index 0000000..0d0e67f --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties new file mode 100644 index 0000000..c6ff1e9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0b253fe5 +build.xml.script.CRC32=80e64c09 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0b253fe5 +nbproject/build-impl.xml.script.CRC32=f8cc7990 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.properties b/1401417015 AngelFlag/exam1task9/nbproject/project.properties new file mode 100644 index 0000000..34cb88a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9.Exam1task9 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.xml b/1401417015 AngelFlag/exam1task9/nbproject/project.xml new file mode 100644 index 0000000..1fa2aee --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java new file mode 100644 index 0000000..2b91e92 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9 { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете две цели числа и низ: i1 i2 s1 = "); + int i1, i2; + String s; + i1 = scanner.nextInt(); + i2 = scanner.nextInt(); + s = scanner.next(); + + System.out.println(i1+i2); + System.out.println(s); + + scanner.close(); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9a/build.xml b/1401417015 AngelFlag/exam1task9a/build.xml new file mode 100644 index 0000000..ba7faac --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9a. + + + diff --git a/1401417015 AngelFlag/exam1task9a/manifest.mf b/1401417015 AngelFlag/exam1task9a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml new file mode 100644 index 0000000..f2d00b1 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties new file mode 100644 index 0000000..194ea4a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=31110c5a +build.xml.script.CRC32=40d1ac97 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=31110c5a +nbproject/build-impl.xml.script.CRC32=5350db3d +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.properties b/1401417015 AngelFlag/exam1task9a/nbproject/project.properties new file mode 100644 index 0000000..6b8fa23 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9a.Exam1task9a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.xml b/1401417015 AngelFlag/exam1task9a/nbproject/project.xml new file mode 100644 index 0000000..2be55a7 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java new file mode 100644 index 0000000..d675187 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9a; + +/** + * + * @author THE NET + */ +public class Exam1task9a { + + /** + * @param args the command line arguments + */ + private static void bigger(double d1, double d2) { + + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } +} + + public static void main(String[] args) { + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9b/build.xml b/1401417015 AngelFlag/exam1task9b/build.xml new file mode 100644 index 0000000..6b93dd8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9b. + + + diff --git a/1401417015 AngelFlag/exam1task9b/manifest.mf b/1401417015 AngelFlag/exam1task9b/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml new file mode 100644 index 0000000..48febd3 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties new file mode 100644 index 0000000..2109eea --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=29259830 +build.xml.script.CRC32=b8263768 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=29259830 +nbproject/build-impl.xml.script.CRC32=ae93b90c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.properties b/1401417015 AngelFlag/exam1task9b/nbproject/project.properties new file mode 100644 index 0000000..bb58fe8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9b.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9b.Exam1task9b +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.xml b/1401417015 AngelFlag/exam1task9b/nbproject/project.xml new file mode 100644 index 0000000..d1f1772 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9b + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java new file mode 100644 index 0000000..0293cba --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java @@ -0,0 +1,52 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9b; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9b { + + /** + * @param args the command line arguments + */ + public static void bigger(double d1, double d2) { + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } + } + public static void main(String[] args) + { + f(11,12); + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + Scanner scanner = new Scanner(System.in); + System.out.print("Въведете d1= "); + int i = scanner.nextInt(); + + System.out.print("Въведете d2 = "); + int j = scanner.nextInt(); + + scanner.close (); + if((i*j)>50); + System.out.println(i * j); + + } + private static void Falcon(double 28, double 3.4); + + System.out.println(a1*) + } +{ + +} + + +} diff --git a/1401417015 AngelFlag/exam1task9c/build.xml b/1401417015 AngelFlag/exam1task9c/build.xml new file mode 100644 index 0000000..08bef7c --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9c. + + + diff --git a/1401417015 AngelFlag/exam1task9c/manifest.mf b/1401417015 AngelFlag/exam1task9c/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml new file mode 100644 index 0000000..790965a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties new file mode 100644 index 0000000..765a39d --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=21361416 +build.xml.script.CRC32=595bbc02 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=21361416 +nbproject/build-impl.xml.script.CRC32=4cfd9adc +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.properties b/1401417015 AngelFlag/exam1task9c/nbproject/project.properties new file mode 100644 index 0000000..334528b --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1task9c.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1task9c.Exam1task9c +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.xml b/1401417015 AngelFlag/exam1task9c/nbproject/project.xml new file mode 100644 index 0000000..9548348 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1task9c + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java new file mode 100644 index 0000000..7e90dea --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java @@ -0,0 +1,35 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9c; + +/** + * + * @author THE NET + */ +public class Exam1task9c { + + /** + * @param d1 + * @param d2 + */ + public static void m(double d1, double d2){ + if (d1+d2> 20) + System.out.println((d1+d2)*(d1-d2)); + else + System.out.println((d1+d2)/5)); + + } + public static void main(String[] args) { + m(11,15); + m(5,11); + + } + public static void f(double a, double b){ + + + System.out.println(a*a + 2*(a-b*b)+7*b); + } +} diff --git a/1401417015 AngelFlag/exam2_1a/build.xml b/1401417015 AngelFlag/exam2_1a/build.xml new file mode 100644 index 0000000..7754b00 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1a. + + + diff --git a/1401417015 AngelFlag/exam2_1a/manifest.mf b/1401417015 AngelFlag/exam2_1a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml new file mode 100644 index 0000000..5baacf5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties new file mode 100644 index 0000000..f74b0fb --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=1ff04ee1 +build.xml.script.CRC32=5bd02908 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=1ff04ee1 +nbproject/build-impl.xml.script.CRC32=f45c0cd8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.properties b/1401417015 AngelFlag/exam2_1a/nbproject/project.properties new file mode 100644 index 0000000..2550bc7 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_1a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1a.Exam2_1a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.xml b/1401417015 AngelFlag/exam2_1a/nbproject/project.xml new file mode 100644 index 0000000..a2599bd --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_1a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java new file mode 100644 index 0000000..f1c6b0b --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1a; + +/** + * + * @author THE NET + */ +public class Exam2_1a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + while(i<11) + { + System.out.println(i); + i=i+1; + + // TODO code application logic here + } +} +} diff --git a/1401417015 AngelFlag/exam2_1c/build.xml b/1401417015 AngelFlag/exam2_1c/build.xml new file mode 100644 index 0000000..01c16fb --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1c. + + + diff --git a/1401417015 AngelFlag/exam2_1c/manifest.mf b/1401417015 AngelFlag/exam2_1c/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml new file mode 100644 index 0000000..48b5312 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties new file mode 100644 index 0000000..3b01543 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=0fd756ad +build.xml.script.CRC32=07fd45e8 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=0fd756ad +nbproject/build-impl.xml.script.CRC32=b96ac11f +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.properties b/1401417015 AngelFlag/exam2_1c/nbproject/project.properties new file mode 100644 index 0000000..38a724f --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_1c.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_1c.Exam2_1c +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.xml b/1401417015 AngelFlag/exam2_1c/nbproject/project.xml new file mode 100644 index 0000000..f545d13 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_1c + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java new file mode 100644 index 0000000..071a91f --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1c; + +/** + * + * @author THE NET + */ +public class Exam2_1c { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + for(int i=1; i<91; i++){ + System.out.println(i); + + } +} + + } + diff --git a/1401417015 AngelFlag/exam2_2/build.xml b/1401417015 AngelFlag/exam2_2/build.xml new file mode 100644 index 0000000..accb390 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_2. + + + diff --git a/1401417015 AngelFlag/exam2_2/manifest.mf b/1401417015 AngelFlag/exam2_2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml new file mode 100644 index 0000000..f3aeb71 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties new file mode 100644 index 0000000..89a1978 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=465e91f2 +build.xml.script.CRC32=700d4eef +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=465e91f2 +nbproject/build-impl.xml.script.CRC32=95870d2f +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.properties b/1401417015 AngelFlag/exam2_2/nbproject/project.properties new file mode 100644 index 0000000..fa6b646 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_2.Exam2_2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.xml b/1401417015 AngelFlag/exam2_2/nbproject/project.xml new file mode 100644 index 0000000..11bcc70 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java new file mode 100644 index 0000000..05b9c25 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_2; + +/** + * + * @author THE NET + */ +public class Exam2_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/method/build.xml b/1401417015 AngelFlag/method/build.xml new file mode 100644 index 0000000..f19924c --- /dev/null +++ b/1401417015 AngelFlag/method/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project method. + + + diff --git a/1401417015 AngelFlag/method/manifest.mf b/1401417015 AngelFlag/method/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/method/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/method/nbproject/build-impl.xml b/1401417015 AngelFlag/method/nbproject/build-impl.xml new file mode 100644 index 0000000..41e7c01 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/method/nbproject/genfiles.properties b/1401417015 AngelFlag/method/nbproject/genfiles.properties new file mode 100644 index 0000000..ade1a48 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=30629669 +build.xml.script.CRC32=0a7ad8f0 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=30629669 +nbproject/build-impl.xml.script.CRC32=9e719cde +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/method/nbproject/project.properties b/1401417015 AngelFlag/method/nbproject/project.properties new file mode 100644 index 0000000..1d19e6d --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/method.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=method.Method +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/method/nbproject/project.xml b/1401417015 AngelFlag/method/nbproject/project.xml new file mode 100644 index 0000000..6b65c18 --- /dev/null +++ b/1401417015 AngelFlag/method/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + method + + + + + + + + + diff --git a/1401417015 AngelFlag/method/src/method/Method.java b/1401417015 AngelFlag/method/src/method/Method.java new file mode 100644 index 0000000..4bf6025 --- /dev/null +++ b/1401417015 AngelFlag/method/src/method/Method.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package method; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +import java.util.*; +public class Method { +public static final double FAVNUMBER = 1.6180; + +private String name; +private int weight; +private boolean hasOwner = false; +private byte age; +private long uniqueID; +private char favoriteChar; +private double speed; +private float height; + +protected static int numberofAnimals = 0; + +static Scanner userinput = new Scanner(System.in); + +public Animal P() { + numberofAnimals++; + + int sumofNumbers = 5+1; + System.out.println(private) +} + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/myWorld/build.xml b/1401417015 AngelFlag/myWorld/build.xml new file mode 100644 index 0000000..8ac948f --- /dev/null +++ b/1401417015 AngelFlag/myWorld/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project myWorld. + + + diff --git a/1401417015 AngelFlag/myWorld/manifest.mf b/1401417015 AngelFlag/myWorld/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml b/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml new file mode 100644 index 0000000..cdb394e --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties b/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties new file mode 100644 index 0000000..04fc822 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=81f28a0d +build.xml.script.CRC32=d53046b1 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=81f28a0d +nbproject/build-impl.xml.script.CRC32=e05ba570 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.properties b/1401417015 AngelFlag/myWorld/nbproject/project.properties new file mode 100644 index 0000000..a428c9a --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/myWorld.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=myworld.MyWorld +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.xml b/1401417015 AngelFlag/myWorld/nbproject/project.xml new file mode 100644 index 0000000..7a8ff38 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + myWorld + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java b/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java new file mode 100644 index 0000000..02884b8 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package myworld; + +/** + * + * @author THE NET + */ +public class Person { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Person Stoyan = new Person(); + stoyan.name = "Stoyan:"; + stoyan.age = 50; + + System.out.println("I am a person, my name is :" + name) + + + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/myWorld/src/myworld/Person.java b/1401417015 AngelFlag/myWorld/src/myworld/Person.java new file mode 100644 index 0000000..47a04c2 --- /dev/null +++ b/1401417015 AngelFlag/myWorld/src/myworld/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package myworld; + +/** + * + * @author THE NET + */ +class Person { + +} diff --git a/1401417015 AngelFlag/upr1zad2intI=5/build.xml b/1401417015 AngelFlag/upr1zad2intI=5/build.xml new file mode 100644 index 0000000..f911cac --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project upr1zad2intI=5. + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml new file mode 100644 index 0000000..7e27ba2 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties new file mode 100644 index 0000000..cf80e05 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=bbd82aac +build.xml.script.CRC32=84847ed1 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=bbd82aac +nbproject/build-impl.xml.script.CRC32=cadce331 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties new file mode 100644 index 0000000..2683611 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/upr1zad2intI_5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=upr1zad2inti.pkg5.Upr1zad2intI5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml new file mode 100644 index 0000000..a6e181e --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + upr1zad2intI=5 + + + + + + + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java new file mode 100644 index 0000000..86ea1f9 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr1zad2inti.pkg5; + +/** + * + * @author THE NET + */ +public class Upr1zad2intI5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 2; + i = i + 19; + System.out.println(i); + } +} From 0860d836052c147511cbc13629a3110bccd93861 Mon Sep 17 00:00:00 2001 From: THE NET Date: Tue, 2 Dec 2014 19:32:32 +0200 Subject: [PATCH 05/41] that is task 2, exam 2. field in Eclipse. grrrrrr counting 20 19 18 17 --- 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java index 05b9c25..664c1c3 100644 --- a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java +++ b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java @@ -10,12 +10,15 @@ * @author THE NET */ public class Exam2_2 { - +//otpechataite chislata ot 1 do 20 v obraten red /** * @param args the command line arguments */ public static void main(String[] args) { - // TODO code application logic here + + for(int i=20; i>1; i=i-1) + + System.out.println(i); } } From ece8c887d89c09bf47789970fb72e0392b009f48 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 2 Dec 2014 19:40:13 +0200 Subject: [PATCH 06/41] Delete Exam2_2.java That's not the proper file! --- .../exam2_2/src/exam2_2/Exam2_2.java | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java deleted file mode 100644 index 05b9c25..0000000 --- a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_2; - -/** - * - * @author THE NET - */ -public class Exam2_2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} From dc2eba909b4cdfc86abf543f4b1ae3a688af6199 Mon Sep 17 00:00:00 2001 From: THE NET Date: Tue, 2 Dec 2014 19:46:15 +0200 Subject: [PATCH 07/41] that is task 2, exam 2. field in Eclipse. grrrrrr counting 20 19 18 17 --- 1401417015 AngelFlag/exam2task2/build.xml | 73 + 1401417015 AngelFlag/exam2task2/manifest.mf | 3 + .../exam2task2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2task2/nbproject/genfiles.properties | 8 + .../exam2task2/nbproject/project.properties | 73 + .../exam2task2/nbproject/project.xml | 15 + .../exam2task2/src/exam2task2/Exam2task2.java | 26 + 7 files changed, 1611 insertions(+) create mode 100644 1401417015 AngelFlag/exam2task2/build.xml create mode 100644 1401417015 AngelFlag/exam2task2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2task2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2task2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java diff --git a/1401417015 AngelFlag/exam2task2/build.xml b/1401417015 AngelFlag/exam2task2/build.xml new file mode 100644 index 0000000..1904195 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2task2. + + + diff --git a/1401417015 AngelFlag/exam2task2/manifest.mf b/1401417015 AngelFlag/exam2task2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml new file mode 100644 index 0000000..3f8f1ac --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties new file mode 100644 index 0000000..e6b6114 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=135406b5 +build.xml.script.CRC32=3664a105 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=135406b5 +nbproject/build-impl.xml.script.CRC32=dbdfbd71 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2task2/nbproject/project.properties b/1401417015 AngelFlag/exam2task2/nbproject/project.properties new file mode 100644 index 0000000..2cc2d52 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2task2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2task2.Exam2task2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2task2/nbproject/project.xml b/1401417015 AngelFlag/exam2task2/nbproject/project.xml new file mode 100644 index 0000000..049b447 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2task2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java new file mode 100644 index 0000000..dd0cf6e --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package exam2task2; + +/** + * + * @author THE NET + */ +public class Exam2task2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + + for(int i=20; i>1; i=i-2) + + System.out.println(i); + } + } + From 3c6d54822138508ddbdcf7946ffbde229042c022 Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 3 Dec 2014 11:35:30 +0200 Subject: [PATCH 08/41] that is task 2, exam 4. print the bigger number! --- 1401417015 AngelFlag/exam2_4.1/build.xml | 73 + 1401417015 AngelFlag/exam2_4.1/manifest.mf | 3 + .../exam2_4.1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_4.1/nbproject/genfiles.properties | 8 + .../exam2_4.1/nbproject/project.properties | 73 + .../exam2_4.1/nbproject/project.xml | 15 + .../exam2_4.1/src/exam2_4/pkg1/Exam2_41.java | 37 + 7 files changed, 1622 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_4.1/build.xml create mode 100644 1401417015 AngelFlag/exam2_4.1/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java diff --git a/1401417015 AngelFlag/exam2_4.1/build.xml b/1401417015 AngelFlag/exam2_4.1/build.xml new file mode 100644 index 0000000..05c2020 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_4.1. + + + diff --git a/1401417015 AngelFlag/exam2_4.1/manifest.mf b/1401417015 AngelFlag/exam2_4.1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml new file mode 100644 index 0000000..3542dee --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties new file mode 100644 index 0000000..be3a817 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=fc1fadad +build.xml.script.CRC32=01344ab2 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=fc1fadad +nbproject/build-impl.xml.script.CRC32=a930b999 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties b/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties new file mode 100644 index 0000000..6d66ef2 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_4.1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_4.pkg1.Exam2_41 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml b/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml new file mode 100644 index 0000000..c01ff83 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_4.1 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java new file mode 100644 index 0000000..abb4232 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java @@ -0,0 +1,37 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_4.pkg1; + +/** + * + * @author THE NET + */ +public class Exam2_41 { + + public static void max1(int i1, int i2){ + int max = i1; + if (max < i2) + max = i2; + + System.out.println(max); + } + //Създайте метод, който извежда максималното от две цели числа зададени като формални параметри. + //Извикайте метода в основната програма. + + public static void main(String[] args) { + max1(2,25); + max1(1,23); + max1(34,24); + + } + + + { + + + } + +} From 49d271f61c0efd6b7af5dfdbd2429c1a4cfc17d7 Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 3 Dec 2014 11:36:08 +0200 Subject: [PATCH 09/41] that is task 2, exam 4 second option using not INT! USING FLOAT like Price!. print the bigger number! --- 1401417015 AngelFlag/exam2_41a/build.xml | 73 + 1401417015 AngelFlag/exam2_41a/manifest.mf | 3 + .../exam2_41a/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_41a/nbproject/genfiles.properties | 8 + .../exam2_41a/nbproject/project.properties | 73 + .../exam2_41a/nbproject/project.xml | 15 + .../exam2_41a/src/exam2_41a/Exam2_41a.java | 31 + 7 files changed, 1616 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_41a/build.xml create mode 100644 1401417015 AngelFlag/exam2_41a/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java diff --git a/1401417015 AngelFlag/exam2_41a/build.xml b/1401417015 AngelFlag/exam2_41a/build.xml new file mode 100644 index 0000000..0cbb6c0 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_41a. + + + diff --git a/1401417015 AngelFlag/exam2_41a/manifest.mf b/1401417015 AngelFlag/exam2_41a/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml new file mode 100644 index 0000000..7b1faec --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties new file mode 100644 index 0000000..39e75c3 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=2c76704d +build.xml.script.CRC32=0c1fa53a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=2c76704d +nbproject/build-impl.xml.script.CRC32=de5c24a8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/project.properties b/1401417015 AngelFlag/exam2_41a/nbproject/project.properties new file mode 100644 index 0000000..3d51c90 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_41a.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_41a.Exam2_41a +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/project.xml b/1401417015 AngelFlag/exam2_41a/nbproject/project.xml new file mode 100644 index 0000000..ad61c05 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_41a + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java b/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java new file mode 100644 index 0000000..c70bcaa --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_41a; + +/** + * + * @author THE NET + */ +public class Exam2_41a { + + public static void printMax(float number1, float number2){ + + float max = number1; + if(number2 > number1) { + max = number2; + } + System.out.println("Max number is:" + max); + } + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + printMax(2,23); + printMax(12312,12132); + printMax(1,22); + + } +} From 639f123823925c9b2fdc326ca6c88defd3947a16 Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 3 Dec 2014 13:10:34 +0200 Subject: [PATCH 10/41] that is task 2, exam 5 int (a,b,c) and find the biggest using formula bar! haha- it works as well and keyboard input. --- 1401417015 AngelFlag/exam2_5task5/build.xml | 73 + 1401417015 AngelFlag/exam2_5task5/manifest.mf | 3 + .../exam2_5task5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../exam2_5task5/nbproject/project.properties | 73 + .../exam2_5task5/nbproject/project.xml | 15 + .../src/exam2_5task5/Exam2_5task5.java | 43 + 7 files changed, 1628 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_5task5/build.xml create mode 100644 1401417015 AngelFlag/exam2_5task5/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java diff --git a/1401417015 AngelFlag/exam2_5task5/build.xml b/1401417015 AngelFlag/exam2_5task5/build.xml new file mode 100644 index 0000000..243e1cc --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_5task5. + + + diff --git a/1401417015 AngelFlag/exam2_5task5/manifest.mf b/1401417015 AngelFlag/exam2_5task5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml new file mode 100644 index 0000000..addbc87 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties new file mode 100644 index 0000000..4e11d6e --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8e0a8e4c +build.xml.script.CRC32=c80a1ecb +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8e0a8e4c +nbproject/build-impl.xml.script.CRC32=81ab315c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties b/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties new file mode 100644 index 0000000..0abe4fd --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_5task5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_5task5.Exam2_5task5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml b/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml new file mode 100644 index 0000000..5bfc0d4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_5task5 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java b/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java new file mode 100644 index 0000000..afdc199 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java @@ -0,0 +1,43 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_5task5; + +/** + * + * @author THE NET + */ +import java.util.*; + +public class Exam2_5task5 { + //Зад. 5 - СР +//Като използвате функцията max от зад. 4.2. +//създайте основна програма s три цели числа от конзолата и намирате, максималното от тях. + + public static void max1(int a, int b, int c){ + + int max = (a > b && a > c) ? a : ((b > a && b > c) ? b : c); + System.out.println(max); + } + + public static void main(String[] args) { + + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете a= "); + int a = scanner.nextInt(); + + System.out.print("Въведете b = "); + int b = scanner.nextInt(); + + System.out.print("Вуведете c = "); + int c = scanner.nextInt(); + + scanner.close(); + + max1(a,b,c); + + } +} From ba707dc6a363a08cdab8017c3a8d41dc27cdf4da Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 4 Dec 2014 00:00:43 +0200 Subject: [PATCH 11/41] that is task 2, exam 5 int (a,b,c) and find the biggest using formula bar! haha- it works as well and keyboard input. --- 1401417015 AngelFlag/exam2_7menu/build.xml | 73 + 1401417015 AngelFlag/exam2_7menu/manifest.mf | 3 + .../exam2_7menu/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_7menu/nbproject/genfiles.properties | 8 + .../exam2_7menu/nbproject/project.properties | 73 + .../exam2_7menu/nbproject/project.xml | 15 + .../src/exam2_7menu/Exam2_7menu.java | 42 + 7 files changed, 1627 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_7menu/build.xml create mode 100644 1401417015 AngelFlag/exam2_7menu/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java diff --git a/1401417015 AngelFlag/exam2_7menu/build.xml b/1401417015 AngelFlag/exam2_7menu/build.xml new file mode 100644 index 0000000..ffee000 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_7menu. + + + diff --git a/1401417015 AngelFlag/exam2_7menu/manifest.mf b/1401417015 AngelFlag/exam2_7menu/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml new file mode 100644 index 0000000..33cfa19 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties new file mode 100644 index 0000000..ecc154a --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=2b5114d5 +build.xml.script.CRC32=07ea05b8 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=2b5114d5 +nbproject/build-impl.xml.script.CRC32=092b2151 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties b/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties new file mode 100644 index 0000000..72949d5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_7menu.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_7menu.Exam2_7menu +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml b/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml new file mode 100644 index 0000000..5bc4ce7 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_7menu + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java new file mode 100644 index 0000000..41bbd40 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java @@ -0,0 +1,42 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_7menu; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_7menu { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Меню"); // Извеждане на менюто в конзолата +System.out.println(" 1. Теглене на сума"); +System.out.println(" 2. Промяна на PIN"); +System.out.println(" 3. Проверка на наличност"); +System.out.println(" 4. Настройки"); +System.out.println(" 5. Изход"); +System.out.print("Изберете възможност (1-5): "); + +Scanner scanner = new Scanner(System.in); +int избор = scanner.nextInt(); +String текст; +switch(избор){ // В зависимост от стойността на „избор”... +case 1: текст = "Вие избрахте 1: Теглене на сума"; break; +case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; +case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; +case 4: текст = "Вие избрахте 4: Настройки"; break; +case 5: текст = "Вие избрахте 5: Изход"; break; +default: текст = "Въвели сте грешен избор!"; +} +System.out.println(текст ); +scanner.close(); + + } + +} From 43b26cf53b5e19208b4ae8663c9f6ef24f6f5eb6 Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 4 Dec 2014 00:13:16 +0200 Subject: [PATCH 12/41] that is task 2, exam 5 int (a,b,c) and find the biggest using formula bar! haha- it works as well and keyboard input. --- 1401417015 AngelFlag/exam2.8menuA/build.xml | 73 + 1401417015 AngelFlag/exam2.8menuA/manifest.mf | 3 + .../exam2.8menuA/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../exam2.8menuA/nbproject/project.properties | 73 + .../exam2.8menuA/nbproject/project.xml | 15 + .../src/exam2/pkg8menua/Exam28menuA.java | 48 + 7 files changed, 1633 insertions(+) create mode 100644 1401417015 AngelFlag/exam2.8menuA/build.xml create mode 100644 1401417015 AngelFlag/exam2.8menuA/manifest.mf create mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java diff --git a/1401417015 AngelFlag/exam2.8menuA/build.xml b/1401417015 AngelFlag/exam2.8menuA/build.xml new file mode 100644 index 0000000..dffb653 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2.8menuA. + + + diff --git a/1401417015 AngelFlag/exam2.8menuA/manifest.mf b/1401417015 AngelFlag/exam2.8menuA/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml new file mode 100644 index 0000000..a8c7448 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties new file mode 100644 index 0000000..845f275 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8ff54f47 +build.xml.script.CRC32=d4269e02 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8ff54f47 +nbproject/build-impl.xml.script.CRC32=c52ac636 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties new file mode 100644 index 0000000..777d12c --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2.8menuA.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2.pkg8menua.Exam28menuA +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml new file mode 100644 index 0000000..529bffc --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2.8menuA + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java new file mode 100644 index 0000000..89c9c23 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java @@ -0,0 +1,48 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2.pkg8menua; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam28menuA { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Меню"); + System.out.println(" 1. Теглене на сума"); + System.out.println(" 2. Промяна на PIN"); + System.out.println(" 3. Проверка на наличност"); + System.out.println(" 4. Настройки"); + System.out.println(" 5. Изход"); + //System.out.print("Изберете възможност (1-5): "); + + Scanner Keyboard = new Scanner(System.in); + + int избор = Keyboard.nextInt(); + String текст; + + do{ System.out.print("Изберете възможност (1-5): "); + избор = Keyboard.nextInt(); + switch(избор){ // v zavisimost ot izbor pravi switch! + + case 1: текст = "Вие избрахте 1: Теглене на сума"; break; + case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; + case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; + case 4: текст = "Вие избрахте 4: Настройки"; break; + case 5: текст = "Вие избрахте 5: Изход"; break; + default: текст = "Въвели сте грешен избор!"; +} + + System.out.println(текст ); + } while(избор!=5); +Keyboard.close(); + } + +} From f50a584c6212d9853c8456e3c3d52f24b44e0356 Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 4 Dec 2014 23:01:27 +0200 Subject: [PATCH 13/41] that is task 2, exam 6 WRONG! --- 1401417015 AngelFlag/exam2_6/build.xml | 73 + 1401417015 AngelFlag/exam2_6/manifest.mf | 3 + .../exam2_6/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_6/nbproject/genfiles.properties | 8 + .../exam2_6/nbproject/project.properties | 73 + .../exam2_6/nbproject/project.xml | 15 + .../exam2_6/src/exam2_6/Exam2_6.java | 40 + 7 files changed, 1625 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_6/build.xml create mode 100644 1401417015 AngelFlag/exam2_6/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_6/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_6/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java diff --git a/1401417015 AngelFlag/exam2_6/build.xml b/1401417015 AngelFlag/exam2_6/build.xml new file mode 100644 index 0000000..4d140a3 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_6. + + + diff --git a/1401417015 AngelFlag/exam2_6/manifest.mf b/1401417015 AngelFlag/exam2_6/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml new file mode 100644 index 0000000..d4133ae --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties new file mode 100644 index 0000000..dd22821 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=6610a16a +build.xml.script.CRC32=6793ac3c +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=6610a16a +nbproject/build-impl.xml.script.CRC32=99ec4cb0 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_6/nbproject/project.properties b/1401417015 AngelFlag/exam2_6/nbproject/project.properties new file mode 100644 index 0000000..33a7a42 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_6.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_6.Exam2_6 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_6/nbproject/project.xml b/1401417015 AngelFlag/exam2_6/nbproject/project.xml new file mode 100644 index 0000000..80e1de9 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_6 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java new file mode 100644 index 0000000..88b4abd --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_6; + +import java.util.Scanner; + +/** + * + * @author THE NET + */ +public class Exam2_6 { + + public static void m1(int a, int b){ + + int m = a; + if (m < b); + m = a; + // + + System.out.println(m); + //m=m+1; + } + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.println("Въведете стойност за a:"); + int a = scanner.nextInt(); + + System.out.println("Въведете стойност за b:"); + int b = scanner.nextInt(); + + scanner.close(); + + m1(a,b); + } + +} From 95b79b93d03aa68619cb502ccd63598afafdef8f Mon Sep 17 00:00:00 2001 From: THE NET Date: Fri, 5 Dec 2014 23:26:48 +0200 Subject: [PATCH 14/41] exam 2_10 --- .../exam2_10/src/exam2_10/Exam2_10.java | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java diff --git a/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java b/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java new file mode 100644 index 0000000..ee6c377 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_10; + +/** + * + * @author THE NET + */ +public class Exam2_10 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double m[] = {1.1,2.2,3.3,4.4,5.5}; //double m[] = new double[5]; + //m[0] = 1.1; + for(double alabala:m) + System.out.println(alabala);//m[1] = 2.2; + + //m[2]=3.3; + //m[3]=4.4; + //m[4]=5.5; +//for(int i=0; i<5; i++) + // System.out.println(m[i]); + //for(int i=0; i Date: Mon, 15 Dec 2014 11:26:25 +0200 Subject: [PATCH 15/41] exam 2_10 --- 1401417015 AngelFlag/Human/build.xml | 73 + 1401417015 AngelFlag/Human/manifest.mf | 3 + .../Human/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../Human/nbproject/genfiles.properties | 8 + .../Human/nbproject/project.properties | 73 + .../Human/nbproject/project.xml | 15 + .../Human/src/human/Human.java | 36 + .../Human/src/human/student.java | 24 + .../Human/src/human/usingHuman.java | 21 + .../Human/src/human/usingStudent.java | 20 + 10 files changed, 1686 insertions(+) create mode 100644 1401417015 AngelFlag/Human/build.xml create mode 100644 1401417015 AngelFlag/Human/manifest.mf create mode 100644 1401417015 AngelFlag/Human/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/Human/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/Human/nbproject/project.properties create mode 100644 1401417015 AngelFlag/Human/nbproject/project.xml create mode 100644 1401417015 AngelFlag/Human/src/human/Human.java create mode 100644 1401417015 AngelFlag/Human/src/human/student.java create mode 100644 1401417015 AngelFlag/Human/src/human/usingHuman.java create mode 100644 1401417015 AngelFlag/Human/src/human/usingStudent.java diff --git a/1401417015 AngelFlag/Human/build.xml b/1401417015 AngelFlag/Human/build.xml new file mode 100644 index 0000000..ee62f1f --- /dev/null +++ b/1401417015 AngelFlag/Human/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Human. + + + diff --git a/1401417015 AngelFlag/Human/manifest.mf b/1401417015 AngelFlag/Human/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/Human/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Human/nbproject/build-impl.xml b/1401417015 AngelFlag/Human/nbproject/build-impl.xml new file mode 100644 index 0000000..546f968 --- /dev/null +++ b/1401417015 AngelFlag/Human/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/Human/nbproject/genfiles.properties b/1401417015 AngelFlag/Human/nbproject/genfiles.properties new file mode 100644 index 0000000..d674ee6 --- /dev/null +++ b/1401417015 AngelFlag/Human/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=08fab195 +build.xml.script.CRC32=6c4477ab +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=08fab195 +nbproject/build-impl.xml.script.CRC32=fc752e67 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Human/nbproject/project.properties b/1401417015 AngelFlag/Human/nbproject/project.properties new file mode 100644 index 0000000..cf1045f --- /dev/null +++ b/1401417015 AngelFlag/Human/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/Human.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=human.usingHuman +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/Human/nbproject/project.xml b/1401417015 AngelFlag/Human/nbproject/project.xml new file mode 100644 index 0000000..f7dfc3b --- /dev/null +++ b/1401417015 AngelFlag/Human/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + Human + + + + + + + + + diff --git a/1401417015 AngelFlag/Human/src/human/Human.java b/1401417015 AngelFlag/Human/src/human/Human.java new file mode 100644 index 0000000..f49d25a --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/Human.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class Human { + String Name; + int Age; + + public Human(String name,int age) + { + this.Name = name;//Name = name; + this.Age = age; //Age = age; + } + @Override + public String toString() + { + return "My name is " + Name +" and I am " + Age + " years old"; + } + /** + * @param args the command line arguments + */ + //public static void main(String[] args) { + // Human metod = new Human("Ivan",20); + // System.out.println(metod.Name + "-" + metod.Age); + // System.out.println(metod.toString()); + // System.out.println(metod); + } + +//} diff --git a/1401417015 AngelFlag/Human/src/human/student.java b/1401417015 AngelFlag/Human/src/human/student.java new file mode 100644 index 0000000..51cc82b --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/student.java @@ -0,0 +1,24 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class student extends Human{ + String Fi; + + public student(String name, int age, String Fi) { + super(name, age); + this.Fi = Fi; + } + public String toString(){ + + return super.toString() + " Той е студент с Fi: " + Fi; + + } +} diff --git a/1401417015 AngelFlag/Human/src/human/usingHuman.java b/1401417015 AngelFlag/Human/src/human/usingHuman.java new file mode 100644 index 0000000..bcc6c07 --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/usingHuman.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class usingHuman { + + public static void main(String[] args) { + Human metod = new Human("Ivan",20); + System.out.println(metod.Name + "-" + metod.Age); + System.out.println(metod.toString()); + System.out.println(metod); + } +} + diff --git a/1401417015 AngelFlag/Human/src/human/usingStudent.java b/1401417015 AngelFlag/Human/src/human/usingStudent.java new file mode 100644 index 0000000..fdc7afd --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/usingStudent.java @@ -0,0 +1,20 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class usingStudent { + public static void main(String[] args) { + student с = new student("Иван", 20, "123456"); + System.out.println(с.Name + " - " + с.Age + " - " + с.Fi); + System.out.println(с); + + } + +} From 86cfabb254bf0a6aa3edf66df383dff803390a22 Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 18:45:19 +0200 Subject: [PATCH 16/41] myworld --- .gitignore | 48 +- .gitignore1417951008175 | 80 + 1401417015 AngelFlag/Mybody/build.xml | 73 + .../{myWorld => Mybody}/manifest.mf | 0 .../Mybody/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 +- .../nbproject/project.properties | 4 +- .../{myWorld => Mybody}/nbproject/project.xml | 2 +- .../Mybody/src/mybody/Mybody.java | 27 + .../Mybody/src/mybody/Person_1.java | 33 + .../Mybody/src/mybody/person.java | 14 + .../{myWorld => animals}/build.xml | 6 +- 1401417015 AngelFlag/animals/manifest.mf | 3 + .../nbproject/build-impl.xml | 10 +- .../animals/nbproject/genfiles.properties | 8 + .../animals/nbproject/project.properties | 73 + .../animals/nbproject/project.xml | 15 + .../animals/src/animals/Animal.java | 17 + .../animals/src/animals/Animals.java | 31 + .../animals/src/animals/Cat.java | 19 + .../animals/src/animals/Dog.java | 19 + 1401417015 AngelFlag/cat/build.xml | 73 + 1401417015 AngelFlag/cat/manifest.mf | 3 + .../cat/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../cat/nbproject/genfiles.properties | 8 + .../cat/nbproject/project.properties | 73 + .../cat/nbproject/project.xml | 15 + 1401417015 AngelFlag/cat/src/cat/cat.java | 47 + .../cat/src/cat/catManip.java | 18 + .../course/src/course/Course.java | 47 +- .../course/src/course/Int.java | 14 + .../course/src/course/Person.java | 14 + 1401417015 AngelFlag/exam1Stoyan/build.xml | 73 + 1401417015 AngelFlag/exam1Stoyan/manifest.mf | 3 + .../exam1Stoyan/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam1Stoyan/nbproject/genfiles.properties | 8 + .../exam1Stoyan/nbproject/project.properties | 73 + .../exam1Stoyan/nbproject/project.xml | 15 + .../src/exam1stoyan/Exam1Stoyan.java | 29 + .../exam1Stoyan/src/exam1stoyan/Trapeze.java | 31 + .../src/exam1stoyan/calculateable.java | 16 + .../exam1Stoyan/src/exam1stoyan/circle.java | 35 + .../src/exam2/pkg8menua/Exam28menuA.java | 5 +- 1401417015 AngelFlag/exam2/build.xml | 73 + 1401417015 AngelFlag/exam2/manifest.mf | 3 + .../exam2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2/nbproject/genfiles.properties | 8 + .../exam2/nbproject/project.properties | 73 + .../exam2/nbproject/project.xml | 15 + .../exam2/src/exam2/Bicycle.java | 27 + .../exam2/src/exam2/Exam2.java | 31 + .../exam2/src/exam2/Product.java | 24 + 1401417015 AngelFlag/exam2/src/exam2/Ski.java | 28 + 1401417015 AngelFlag/exam2_10/build.xml | 73 + 1401417015 AngelFlag/exam2_10/manifest.mf | 3 + .../exam2_10/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_10/nbproject/genfiles.properties | 8 + .../exam2_10/nbproject/project.properties | 73 + .../exam2_10/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam2_11/build.xml | 73 + 1401417015 AngelFlag/exam2_11/manifest.mf | 3 + .../exam2_11/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_11/nbproject/genfiles.properties | 8 + .../exam2_11/nbproject/project.properties | 73 + .../exam2_11/nbproject/project.xml | 15 + .../exam2_11/src/exam2_11/Exam2_11.java | 48 + .../exam2_11/src/java/util/input.java | 14 + .../exam2_1a/src/exam2_1a/Exam2_1a.java | 7 +- 1401417015 AngelFlag/exam2_3/build.xml | 73 + 1401417015 AngelFlag/exam2_3/manifest.mf | 3 + .../exam2_3/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_3/nbproject/genfiles.properties | 8 + .../exam2_3/nbproject/project.properties | 73 + .../exam2_3/nbproject/project.xml | 15 + .../exam2_3/src/exam2_3/Exam2_3.java | 28 + .../exam2_4.1/src/exam2_4/pkg1/Exam2_41.java | 25 +- .../exam2_6/src/exam2_6/Exam2_6.java | 4 +- .../src/exam2_7menu/Exam2_7menu.java | 37 +- 1401417015 AngelFlag/exam2_9/build.xml | 73 + 1401417015 AngelFlag/exam2_9/manifest.mf | 3 + .../exam2_9/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam2_9/nbproject/genfiles.properties | 8 + .../exam2_9/nbproject/project.properties | 73 + .../exam2_9/nbproject/project.xml | 15 + .../exam2_9/src/exam2_9/Exam2_9.java | 59 + .../exam2task2/src/exam2task2/Exam2task2.java | 2 +- 1401417015 AngelFlag/exam3_1/build.xml | 73 + 1401417015 AngelFlag/exam3_1/manifest.mf | 3 + .../exam3_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam3_1/nbproject/genfiles.properties | 8 + .../exam3_1/nbproject/project.properties | 73 + .../exam3_1/nbproject/project.xml | 15 + .../exam3_1/src/exam3_1/Exam3_1.java | 34 + 1401417015 AngelFlag/nfs/build.xml | 73 + 1401417015 AngelFlag/nfs/manifest.mf | 3 + .../nfs/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nfs/nbproject/genfiles.properties | 8 + .../nfs/nbproject/project.properties | 73 + .../nfs/nbproject/project.xml | 15 + 1401417015 AngelFlag/nfs/src/Vehicle.java | 13 + .../nfs/src/nfs/Drivable.java | 19 + .../MyWorld.java => nfs/src/nfs/Nfs.java} | 13 +- .../nfs/src/nfs/SportCar.java | 29 + 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java | 26 + 1401417015 AngelFlag/oop1_MyWorld/build.xml | 73 + 1401417015 AngelFlag/oop1_MyWorld/manifest.mf | 3 + .../oop1_MyWorld/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../oop1_MyWorld/nbproject/project.properties | 73 + .../oop1_MyWorld/nbproject/project.xml | 15 + .../src/oop1_myworld/Oop1_MyWorld.java | 47 + .../oop1_MyWorld/src/oop1_myworld/Person.java | 51 + 1401417015 AngelFlag/upr5_2/build.xml | 73 + 1401417015 AngelFlag/upr5_2/manifest.mf | 3 + .../upr5_2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../upr5_2/nbproject/genfiles.properties | 8 + .../upr5_2/nbproject/project.properties | 73 + .../upr5_2/nbproject/project.xml | 15 + .../myworld => upr5_2/src/upr5_2}/Person.java | 2 +- .../upr5_2/src/upr5_2/Upr5_2.java | 21 + 120 files changed, 20089 insertions(+), 94 deletions(-) create mode 100644 .gitignore1417951008175 create mode 100644 1401417015 AngelFlag/Mybody/build.xml rename 1401417015 AngelFlag/{myWorld => Mybody}/manifest.mf (100%) create mode 100644 1401417015 AngelFlag/Mybody/nbproject/build-impl.xml rename 1401417015 AngelFlag/{myWorld => Mybody}/nbproject/genfiles.properties (65%) rename 1401417015 AngelFlag/{myWorld => Mybody}/nbproject/project.properties (94%) rename 1401417015 AngelFlag/{myWorld => Mybody}/nbproject/project.xml (90%) create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Mybody.java create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Person_1.java create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/person.java rename 1401417015 AngelFlag/{myWorld => animals}/build.xml (93%) create mode 100644 1401417015 AngelFlag/animals/manifest.mf rename 1401417015 AngelFlag/{myWorld => animals}/nbproject/build-impl.xml (97%) create mode 100644 1401417015 AngelFlag/animals/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/animals/nbproject/project.properties create mode 100644 1401417015 AngelFlag/animals/nbproject/project.xml create mode 100644 1401417015 AngelFlag/animals/src/animals/Animal.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Animals.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Cat.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Dog.java create mode 100644 1401417015 AngelFlag/cat/build.xml create mode 100644 1401417015 AngelFlag/cat/manifest.mf create mode 100644 1401417015 AngelFlag/cat/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/cat/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/cat/nbproject/project.properties create mode 100644 1401417015 AngelFlag/cat/nbproject/project.xml create mode 100644 1401417015 AngelFlag/cat/src/cat/cat.java create mode 100644 1401417015 AngelFlag/cat/src/cat/catManip.java create mode 100644 1401417015 AngelFlag/course/src/course/Int.java create mode 100644 1401417015 AngelFlag/course/src/course/Person.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/build.xml create mode 100644 1401417015 AngelFlag/exam1Stoyan/manifest.mf create mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java create mode 100644 1401417015 AngelFlag/exam2/build.xml create mode 100644 1401417015 AngelFlag/exam2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2/src/exam2/Bicycle.java create mode 100644 1401417015 AngelFlag/exam2/src/exam2/Exam2.java create mode 100644 1401417015 AngelFlag/exam2/src/exam2/Product.java create mode 100644 1401417015 AngelFlag/exam2/src/exam2/Ski.java create mode 100644 1401417015 AngelFlag/exam2_10/build.xml create mode 100644 1401417015 AngelFlag/exam2_10/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_10/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_10/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_11/build.xml create mode 100644 1401417015 AngelFlag/exam2_11/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_11/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_11/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java create mode 100644 1401417015 AngelFlag/exam2_11/src/java/util/input.java create mode 100644 1401417015 AngelFlag/exam2_3/build.xml create mode 100644 1401417015 AngelFlag/exam2_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_3/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_3/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java create mode 100644 1401417015 AngelFlag/exam2_9/build.xml create mode 100644 1401417015 AngelFlag/exam2_9/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam2_9/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam2_9/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java create mode 100644 1401417015 AngelFlag/exam3_1/build.xml create mode 100644 1401417015 AngelFlag/exam3_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam3_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam3_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java create mode 100644 1401417015 AngelFlag/nfs/build.xml create mode 100644 1401417015 AngelFlag/nfs/manifest.mf create mode 100644 1401417015 AngelFlag/nfs/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/nfs/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/nfs/nbproject/project.properties create mode 100644 1401417015 AngelFlag/nfs/nbproject/project.xml create mode 100644 1401417015 AngelFlag/nfs/src/Vehicle.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/Drivable.java rename 1401417015 AngelFlag/{myWorld/src/myworld/MyWorld.java => nfs/src/nfs/Nfs.java} (59%) create mode 100644 1401417015 AngelFlag/nfs/src/nfs/SportCar.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/build.xml create mode 100644 1401417015 AngelFlag/oop1_MyWorld/manifest.mf create mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties create mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java create mode 100644 1401417015 AngelFlag/upr5_2/build.xml create mode 100644 1401417015 AngelFlag/upr5_2/manifest.mf create mode 100644 1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/upr5_2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/upr5_2/nbproject/project.xml rename 1401417015 AngelFlag/{myWorld/src/myworld => upr5_2/src/upr5_2}/Person.java (88%) create mode 100644 1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java diff --git a/.gitignore b/.gitignore index 41205db..3e1670f 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,50 @@ /1401417015 AngelFlag/exam2_1c/build/ /1401417015 AngelFlag/course/nbproject/private/ /1401417015 AngelFlag/course/build/ -/1401417015 AngelFlag/myWorld/nbproject/private/ \ No newline at end of file +/1401417015 AngelFlag/myWorld/nbproject/private/ +/1401417015 AngelFlag/Mybody/nbproject/private/ +/1401417015 AngelFlag/Mybody/build/ +/1401417015 AngelFlag/upr5_2/nbproject/private/ +/1401417015 AngelFlag/exam2_2/build/ +/1401417015 AngelFlag/exam2task2/nbproject/private/ +/1401417015 AngelFlag/exam2task2/build/ +/1401417015 AngelFlag/exam2_3/nbproject/private/ +/1401417015 AngelFlag/exam2_3/build/ +/1401417015 AngelFlag/exam2_4.1/nbproject/private/ +/1401417015 AngelFlag/exam2_4.1/build/ +/1401417015 AngelFlag/exam2_41a/nbproject/private/ +/1401417015 AngelFlag/exam2_41a/build/ +/1401417015 AngelFlag/exam2_5task5/nbproject/private/ +/1401417015 AngelFlag/exam2_5task5/build/ +/1401417015 AngelFlag/exam2_6/nbproject/private/ +/1401417015 AngelFlag/exam2_6/build/ +/1401417015 AngelFlag/exam2_7menu/nbproject/private/ +/1401417015 AngelFlag/exam2_7menu/build/ +/1401417015 AngelFlag/exam2.8menuA/nbproject/private/ +/1401417015 AngelFlag/exam2.8menuA/build/ +/1401417015 AngelFlag/exam2_9/nbproject/private/ +/1401417015 AngelFlag/exam2_9/build/ +/1401417015 AngelFlag/exam2_10/nbproject/private/ +/1401417015 AngelFlag/exam2_10/build/ +/1401417015 AngelFlag/exam2_11/nbproject/private/ +/1401417015 AngelFlag/exam2_11/build/ +/1401417015 AngelFlag/exam3_1/nbproject/private/ +/1401417015 AngelFlag/exam3_1/build/ +/1401417015 AngelFlag/Human/nbproject/private/ +/1401417015 AngelFlag/Human/build/ +/1401417015 AngelFlag/nfs/nbproject/private/ +/1401417015 AngelFlag/nfs/build/ +/1401417015 AngelFlag/exam3_1/dist/ +/1401417015 AngelFlag/cat/nbproject/private/ +/1401417015 AngelFlag/cat/build/ +/1401417015 AngelFlag/zadacha1zaizpit/nbproject/private/ +/1401417015 AngelFlag/zadacha1zaizpit/build/ +/1401417015 AngelFlag/exam1Stoyan/nbproject/private/ +/1401417015 AngelFlag/exam1Stoyan/build/ +/1401417015 AngelFlag/ski/nbproject/private/ +/1401417015 AngelFlag/exam2/nbproject/private/ +/1401417015 AngelFlag/exam2/build/ +/1401417015 AngelFlag/animals/nbproject/private/ +/1401417015 AngelFlag/animals/build/ +/1401417015 AngelFlag/oop1_MyWorld/nbproject/private/ +/1401417015 AngelFlag/oop1_MyWorld/build/ \ No newline at end of file diff --git a/.gitignore1417951008175 b/.gitignore1417951008175 new file mode 100644 index 0000000..d6f9cf7 --- /dev/null +++ b/.gitignore1417951008175 @@ -0,0 +1,80 @@ +/1401417003_KalinDimov/NewProject/nbproject/private/ +/1401417003_KalinDimov/NewProject/build/ +/0000000000_StoyanCheresharov/DataTypes/nbproject/private/ +/0000000000_StoyanCheresharov/DataTypes/build/ +/1401417015 AngelFlag/datatype/nbproject/private/ +/1401417015 AngelFlag/datatype/build/ +/1401417015 AngelFlag/bigdecimal/nbproject/private/ +/1401417015 AngelFlag/bigdecimal/build/ +/1401417015 AngelFlag/method/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/nbproject/private/ +/1401417015 AngelFlag/upr1zad2intI=5/build/ +/1401417015 AngelFlag/exam1task3intTwo/nbproject/private/ +/1401417015 AngelFlag/exam1task3intTwo/build/ +/1401417015 AngelFlag/exam1task4/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/nbproject/private/ +/1401417015 AngelFlag/exam1task3.2/build/ +/1401417015 AngelFlag/exam1task4/build/ +/1401417015 AngelFlag/exam1task5/nbproject/private/ +/1401417015 AngelFlag/exam1task5/build/ +/1401417015 AngelFlag/exam1task6/nbproject/private/ +/1401417015 AngelFlag/exam1task6/build/ +/1401417015 AngelFlag/exam1task7/nbproject/private/ +/1401417015 AngelFlag/exam1task7/build/ +/1401417015 AngelFlag/exam1task8/nbproject/private/ +/1401417015 AngelFlag/exam1task8/build/ +/1401417015 AngelFlag/exam1task9/nbproject/private/ +/1401417015 AngelFlag/exam1task9/build/ +/1401417015 AngelFlag/exam1task8a/nbproject/private/ +/1401417015 AngelFlag/exam1task8a/build/ +/1401417015 AngelFlag/exam1task9a/nbproject/private/ +/1401417015 AngelFlag/exam1task9a/build/ +/1401417015 AngelFlag/exam1task9b/nbproject/private/ +/1401417015 AngelFlag/exam1task9b/build/ +/1401417015 AngelFlag/exam1task9c/nbproject/private/ +/1401417015 AngelFlag/exam1task9c/build/ +/1401417015 AngelFlag/exam1_10/nbproject/private/ +/1401417015 AngelFlag/exam1_10/build/ +/1401417015 AngelFlag/2_1/nbproject/private/ +/1401417015 AngelFlag/2_1/build/ +/1401417015 AngelFlag/exam2_2/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/nbproject/private/ +/1401417015 AngelFlag/exam2_1a/build/ +/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/private/ +/1401417015 AngelFlag/Exam2_1bdowhile/build/ +/1401417015 AngelFlag/exam2_1c/nbproject/private/ +/1401417015 AngelFlag/exam2_1c/build/ +/1401417015 AngelFlag/course/nbproject/private/ +/1401417015 AngelFlag/course/build/ +/1401417015 AngelFlag/myWorld/nbproject/private/ +/1401417015 AngelFlag/Mybody/nbproject/private/ +/1401417015 AngelFlag/Mybody/build/ +/1401417015 AngelFlag/upr5_2/nbproject/private/ +/1401417015 AngelFlag/exam2_2/build/ +/1401417015 AngelFlag/exam2task2/nbproject/private/ +/1401417015 AngelFlag/exam2task2/build/ +/1401417015 AngelFlag/exam2_3/nbproject/private/ +/1401417015 AngelFlag/exam2_3/build/ +/1401417015 AngelFlag/exam2_4.1/nbproject/private/ +/1401417015 AngelFlag/exam2_4.1/build/ +/1401417015 AngelFlag/exam2_41a/nbproject/private/ +/1401417015 AngelFlag/exam2_41a/build/ +/1401417015 AngelFlag/exam2_5task5/nbproject/private/ +/1401417015 AngelFlag/exam2_5task5/build/ +/1401417015 AngelFlag/exam2_6/nbproject/private/ +/1401417015 AngelFlag/exam2_6/build/ +/1401417015 AngelFlag/exam2_7menu/nbproject/private/ +/1401417015 AngelFlag/exam2_7menu/build/ +/1401417015 AngelFlag/exam2.8menuA/nbproject/private/ +/1401417015 AngelFlag/exam2.8menuA/build/ +/1401417015 AngelFlag/exam2_9/nbproject/private/ +/1401417015 AngelFlag/exam2_9/build/ +/1401417015 AngelFlag/exam2_10/nbproject/private/ +/1401417015 AngelFlag/exam2_10/build/ +/1401417015 AngelFlag/exam2_11/nbproject/private/ +/1401417015 AngelFlag/exam2_11/build/ +/1401417015 AngelFlag/exam3_1/nbproject/private/ +/1401417015 AngelFlag/exam3_1/build/ +/1401417015 AngelFlag/Human/nbproject/private/ +/1401417015 AngelFlag/Human/build/ +/1401417015 AngelFlag/nfs/nbproject/private/ \ No newline at end of file diff --git a/1401417015 AngelFlag/Mybody/build.xml b/1401417015 AngelFlag/Mybody/build.xml new file mode 100644 index 0000000..df3f1ee --- /dev/null +++ b/1401417015 AngelFlag/Mybody/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Mybody. + + + diff --git a/1401417015 AngelFlag/myWorld/manifest.mf b/1401417015 AngelFlag/Mybody/manifest.mf similarity index 100% rename from 1401417015 AngelFlag/myWorld/manifest.mf rename to 1401417015 AngelFlag/Mybody/manifest.mf diff --git a/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml b/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml new file mode 100644 index 0000000..89b628e --- /dev/null +++ b/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties b/1401417015 AngelFlag/Mybody/nbproject/genfiles.properties similarity index 65% rename from 1401417015 AngelFlag/myWorld/nbproject/genfiles.properties rename to 1401417015 AngelFlag/Mybody/nbproject/genfiles.properties index 04fc822..0c5989d 100644 --- a/1401417015 AngelFlag/myWorld/nbproject/genfiles.properties +++ b/1401417015 AngelFlag/Mybody/nbproject/genfiles.properties @@ -1,8 +1,8 @@ -build.xml.data.CRC32=81f28a0d -build.xml.script.CRC32=d53046b1 +build.xml.data.CRC32=7bfaf959 +build.xml.script.CRC32=a8d98e46 build.xml.stylesheet.CRC32=8064a381@1.75.2.48 # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=81f28a0d -nbproject/build-impl.xml.script.CRC32=e05ba570 +nbproject/build-impl.xml.data.CRC32=7bfaf959 +nbproject/build-impl.xml.script.CRC32=129f3dd2 nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.properties b/1401417015 AngelFlag/Mybody/nbproject/project.properties similarity index 94% rename from 1401417015 AngelFlag/myWorld/nbproject/project.properties rename to 1401417015 AngelFlag/Mybody/nbproject/project.properties index a428c9a..fb9217a 100644 --- a/1401417015 AngelFlag/myWorld/nbproject/project.properties +++ b/1401417015 AngelFlag/Mybody/nbproject/project.properties @@ -24,7 +24,7 @@ debug.test.classpath=\ dist.archive.excludes= # This directory is removed when the project is cleaned: dist.dir=dist -dist.jar=${dist.dir}/myWorld.jar +dist.jar=${dist.dir}/Mybody.jar dist.javadoc.dir=${dist.dir}/javadoc excludes= includes=** @@ -53,7 +53,7 @@ javadoc.splitindex=true javadoc.use=true javadoc.version=false javadoc.windowtitle= -main.class=myworld.MyWorld +main.class=mybody.Mybody manifest.file=manifest.mf meta.inf.dir=${src.dir}/META-INF mkdist.disabled=false diff --git a/1401417015 AngelFlag/myWorld/nbproject/project.xml b/1401417015 AngelFlag/Mybody/nbproject/project.xml similarity index 90% rename from 1401417015 AngelFlag/myWorld/nbproject/project.xml rename to 1401417015 AngelFlag/Mybody/nbproject/project.xml index 7a8ff38..b528f56 100644 --- a/1401417015 AngelFlag/myWorld/nbproject/project.xml +++ b/1401417015 AngelFlag/Mybody/nbproject/project.xml @@ -3,7 +3,7 @@ org.netbeans.modules.java.j2seproject - myWorld + Mybody diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java b/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java new file mode 100644 index 0000000..d2b5c1f --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +public class Mybody { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Person Angel = new Person(); + //Angel.name ="Angel"; + //Angel.age = 33; + Angel.setName("Angel"); + Angel.setAge(33); + + System.out.println("I am a person!" + "My name is:" + Angel.getName() + " и съм на " + Angel.getAge() +"Години"); + } + +} diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java b/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java new file mode 100644 index 0000000..0dc3f73 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +class Person { + private String name; + private int age; + + // Name + public String getName(){ + return name; + } + + public void setName(String name){ + this.name= name; + } + public int getAge(){ + return age; + } + + public void setAge(int age) { + this.age=age; + } +} + + diff --git a/1401417015 AngelFlag/Mybody/src/mybody/person.java b/1401417015 AngelFlag/Mybody/src/mybody/person.java new file mode 100644 index 0000000..68ed6c9 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +class person { + +} diff --git a/1401417015 AngelFlag/myWorld/build.xml b/1401417015 AngelFlag/animals/build.xml similarity index 93% rename from 1401417015 AngelFlag/myWorld/build.xml rename to 1401417015 AngelFlag/animals/build.xml index 8ac948f..8d1ce2b 100644 --- a/1401417015 AngelFlag/myWorld/build.xml +++ b/1401417015 AngelFlag/animals/build.xml @@ -7,8 +7,8 @@ - - Builds, tests, and runs the project myWorld. + + Builds, tests, and runs the project animals. - + @@ -443,7 +443,7 @@ is divided into following sections: - + @@ -594,7 +594,7 @@ is divided into following sections: - + @@ -886,7 +886,7 @@ is divided into following sections: - + @@ -1371,7 +1371,7 @@ is divided into following sections: - + diff --git a/1401417015 AngelFlag/animals/nbproject/genfiles.properties b/1401417015 AngelFlag/animals/nbproject/genfiles.properties new file mode 100644 index 0000000..f7a0a0f --- /dev/null +++ b/1401417015 AngelFlag/animals/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=aa0ca520 +build.xml.script.CRC32=d83b875e +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=aa0ca520 +nbproject/build-impl.xml.script.CRC32=d4ca1e6d +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/animals/nbproject/project.properties b/1401417015 AngelFlag/animals/nbproject/project.properties new file mode 100644 index 0000000..3d57e8c --- /dev/null +++ b/1401417015 AngelFlag/animals/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/animals.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=animals.Animals +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/animals/nbproject/project.xml b/1401417015 AngelFlag/animals/nbproject/project.xml new file mode 100644 index 0000000..571dba5 --- /dev/null +++ b/1401417015 AngelFlag/animals/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + animals + + + + + + + + + diff --git a/1401417015 AngelFlag/animals/src/animals/Animal.java b/1401417015 AngelFlag/animals/src/animals/Animal.java new file mode 100644 index 0000000..745371e --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Animal.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Animal { + public void makeNoise() { + System.out.println("Grrrrrrrrr"); + } +} + \ No newline at end of file diff --git a/1401417015 AngelFlag/animals/src/animals/Animals.java b/1401417015 AngelFlag/animals/src/animals/Animals.java new file mode 100644 index 0000000..769f1e5 --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Animals.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Animals { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Animal[] myAnimals = new Animal[5]; + Cat fluffy = new Cat(); + Dog sharo = new Dog(); + + + myAnimals[0] = fluffy; + myAnimals[1] = sharo; + + myAnimals[0].makeNoise(); + myAnimals[1].makeNoise(); + + } + +} diff --git a/1401417015 AngelFlag/animals/src/animals/Cat.java b/1401417015 AngelFlag/animals/src/animals/Cat.java new file mode 100644 index 0000000..0342f06 --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Cat.java @@ -0,0 +1,19 @@ +w/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Cat extends Animal { + + @Override + public void makeNoise() { + System.out.println("Miauuuuuuu"); + } + +} diff --git a/1401417015 AngelFlag/animals/src/animals/Dog.java b/1401417015 AngelFlag/animals/src/animals/Dog.java new file mode 100644 index 0000000..ee4c71b --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Dog.java @@ -0,0 +1,19 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Dog extends Animal{ + + @Override + public void makeNoise() { + super.makeNoise(); + } + +} diff --git a/1401417015 AngelFlag/cat/build.xml b/1401417015 AngelFlag/cat/build.xml new file mode 100644 index 0000000..2322b93 --- /dev/null +++ b/1401417015 AngelFlag/cat/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project cat. + + + diff --git a/1401417015 AngelFlag/cat/manifest.mf b/1401417015 AngelFlag/cat/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/cat/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/cat/nbproject/build-impl.xml b/1401417015 AngelFlag/cat/nbproject/build-impl.xml new file mode 100644 index 0000000..fe4896d --- /dev/null +++ b/1401417015 AngelFlag/cat/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/cat/nbproject/genfiles.properties b/1401417015 AngelFlag/cat/nbproject/genfiles.properties new file mode 100644 index 0000000..58463a2 --- /dev/null +++ b/1401417015 AngelFlag/cat/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=e8bb94c1 +build.xml.script.CRC32=c5913046 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=e8bb94c1 +nbproject/build-impl.xml.script.CRC32=c9f37adc +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/cat/nbproject/project.properties b/1401417015 AngelFlag/cat/nbproject/project.properties new file mode 100644 index 0000000..113f1cc --- /dev/null +++ b/1401417015 AngelFlag/cat/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/cat.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=cat.catManip +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/cat/nbproject/project.xml b/1401417015 AngelFlag/cat/nbproject/project.xml new file mode 100644 index 0000000..df25792 --- /dev/null +++ b/1401417015 AngelFlag/cat/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + cat + + + + + + + + + diff --git a/1401417015 AngelFlag/cat/src/cat/cat.java b/1401417015 AngelFlag/cat/src/cat/cat.java new file mode 100644 index 0000000..bc3e48e --- /dev/null +++ b/1401417015 AngelFlag/cat/src/cat/cat.java @@ -0,0 +1,47 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package cat; + +/** + * + * @author THE NET + */ +public class cat { + + private String name; + private String color; + + cat(String johny, String green) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public String getName() { + return this.name; + } + public void setName(String name) { + this.name = name; + } + public String getColor() { + return this.color; + } + + public void setColor(String color) { + this.color = color; + } + + public cat(){ + this.name= "Lisi"; + this.color= "gray"; + } + + /** + * + */ + public void sayMiau(){ + System.out.printf("Cat %s said: Miauuuuuu!%n", name); + } + + } \ No newline at end of file diff --git a/1401417015 AngelFlag/cat/src/cat/catManip.java b/1401417015 AngelFlag/cat/src/cat/catManip.java new file mode 100644 index 0000000..29a0121 --- /dev/null +++ b/1401417015 AngelFlag/cat/src/cat/catManip.java @@ -0,0 +1,18 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package cat; + +/** + * + * @author THE NET + */ +public class catManip { + public static void main(String[] args) { + cat method = new cat("johny", "green"); + System.out.println(method); + + } +} diff --git a/1401417015 AngelFlag/course/src/course/Course.java b/1401417015 AngelFlag/course/src/course/Course.java index 5d65ed6..f650f3f 100644 --- a/1401417015 AngelFlag/course/src/course/Course.java +++ b/1401417015 AngelFlag/course/src/course/Course.java @@ -11,6 +11,11 @@ */ import java.util.Scanner; +//Дефинирайте клас който отразява човек. +//За решаване на конкретен проблем от всички характерситики на човека ни интересуват име, +//фамилия и години. Класът трябва да съдържа функционалност, +//която позволява на всеки конкретен обект +//от този клас да се представи с името, фамилията и възрастта си. public class Course { /** @@ -18,31 +23,27 @@ public class Course { */ public static void main(String[] args) { Scanner Keyboard= new Scanner(System.in); - boolean exit = false; - - do { - System.out.println("type 'exit' to exit this program..."); - input = Keyboard.nextLine(); - if(input.equals("exit")){ - exit = true; - }while(exit == false); - - - } - }while(exit == false); - System.out.println("Goodbye"); - - } - } + + System.out.println("Какво е вашето име?"); + String Name = Keyboard.nextLine(); + + System.out.println("Каква е вашата фамилия?"); + String Family = Keyboard.nextLine(); + + System.out.println("На колко години сте?"); + int Age = Keyboard.nextInt(); - Boolean hello = true; - while(hello) - { - System.out.println("Hello"); - hello = false; - - } + Person(); } + + + public static void Person() { + String Name = ("Angel"); + int Age = 33; + System.out.print("Моето име е:" + Name + " И съм на " + Age + "Години"); + } +} + \ No newline at end of file diff --git a/1401417015 AngelFlag/course/src/course/Int.java b/1401417015 AngelFlag/course/src/course/Int.java new file mode 100644 index 0000000..1e28962 --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Int.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +class Int { + +} diff --git a/1401417015 AngelFlag/course/src/course/Person.java b/1401417015 AngelFlag/course/src/course/Person.java new file mode 100644 index 0000000..e7c05cd --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +public class Person { + +} diff --git a/1401417015 AngelFlag/exam1Stoyan/build.xml b/1401417015 AngelFlag/exam1Stoyan/build.xml new file mode 100644 index 0000000..059cb68 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1Stoyan. + + + diff --git a/1401417015 AngelFlag/exam1Stoyan/manifest.mf b/1401417015 AngelFlag/exam1Stoyan/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml new file mode 100644 index 0000000..daf1f62 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties new file mode 100644 index 0000000..ee39273 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=1d95c2b3 +build.xml.script.CRC32=fb34b3ba +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=1d95c2b3 +nbproject/build-impl.xml.script.CRC32=496e21a5 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties new file mode 100644 index 0000000..415b0bf --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam1Stoyan.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam1stoyan.Exam1Stoyan +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml new file mode 100644 index 0000000..20178c8 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam1Stoyan + + + + + + + + + diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java new file mode 100644 index 0000000..38f9080 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1stoyan; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam1Stoyan { + public static Scanner input=new Scanner(System.in); + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Please choose the figure 1.Circle, 2.Trapeze"); + int choice = input.nextInt(); + + calculateable figure; + if (choice == 1) figure = new circle(); + else figure = new Trapeze();// TODO code application logic here + figure.readParameters(); + System.out.printf("%.2f", figure.calculateSurface()); + } + +} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java new file mode 100644 index 0000000..012ec68 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1stoyan; + +/** + * + * @author THE NET + */ +public class Trapeze implements calculateable { + + private double a; + private double b; + private double h; + + @Override + public void readParameters() { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + @Override + public double calculateSurface() { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + + + +} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java new file mode 100644 index 0000000..db67819 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java @@ -0,0 +1,16 @@ +package exam1stoyan; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public interface calculateable { + void readParameters(); + double calculateSurface(); +} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java new file mode 100644 index 0000000..f382384 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java @@ -0,0 +1,35 @@ +package exam1stoyan; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public class circle implements calculateable { + + private double r; + + + @Override + public void readParameters() { + System.out.print("\nPlease enter r: "); + System.out.println(""); + r = Exam1Stoyan.input.nextDouble(); + } + + @Override + public double calculateSurface() { + return Math.PI * r * r; + } + + + + + +} + diff --git a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java index 89c9c23..0f01ef7 100644 --- a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java +++ b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java @@ -28,9 +28,10 @@ public static void main(String[] args) { int избор = Keyboard.nextInt(); String текст; - do{ System.out.print("Изберете възможност (1-5): "); + do{ + System.out.print("Изберете възможност (1-5): "); избор = Keyboard.nextInt(); - switch(избор){ // v zavisimost ot izbor pravi switch! + switch(избор){ // case 1: текст = "Вие избрахте 1: Теглене на сума"; break; case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; diff --git a/1401417015 AngelFlag/exam2/build.xml b/1401417015 AngelFlag/exam2/build.xml new file mode 100644 index 0000000..5f96f64 --- /dev/null +++ b/1401417015 AngelFlag/exam2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2. + + + diff --git a/1401417015 AngelFlag/exam2/manifest.mf b/1401417015 AngelFlag/exam2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2/nbproject/build-impl.xml new file mode 100644 index 0000000..954c5eb --- /dev/null +++ b/1401417015 AngelFlag/exam2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2/nbproject/genfiles.properties new file mode 100644 index 0000000..06ea930 --- /dev/null +++ b/1401417015 AngelFlag/exam2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=40e58c9c +build.xml.script.CRC32=7d53f411 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=40e58c9c +nbproject/build-impl.xml.script.CRC32=94939251 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2/nbproject/project.properties b/1401417015 AngelFlag/exam2/nbproject/project.properties new file mode 100644 index 0000000..38d5e5c --- /dev/null +++ b/1401417015 AngelFlag/exam2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2.Exam2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2/nbproject/project.xml b/1401417015 AngelFlag/exam2/nbproject/project.xml new file mode 100644 index 0000000..ded64be --- /dev/null +++ b/1401417015 AngelFlag/exam2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java b/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java new file mode 100644 index 0000000..53cab9b --- /dev/null +++ b/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2; + +/** + * + * @author THE NET + */ +public class Bicycle extends Product{ + private String model; + + public Bicycle(String model, double price) { + super(price); + this.model = model; + } + + @Override + public String toString() { + return "Bicycle{" + "model=" + model + "-" + price +'}'; + } + + + +} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Exam2.java b/1401417015 AngelFlag/exam2/src/exam2/Exam2.java new file mode 100644 index 0000000..db636e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2/src/exam2/Exam2.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2; + +/** + * + * @author THE NET + */ +public class Exam2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Ski mySki = new Ski(5.3, 150.5,234.00); + Bicycle myBicycle = new Bicycle("Mountain bike model 345", 468.95); + System.out.println(Products(mySki,myBicycle)); + + System.out.println(""); + + } + + private static double Products(Product pr1,Product pr2){ + return (pr1.getPrice() < pr2.getPrice())? pr1.getPrice() : pr2.getPrice(); + + +} +} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Product.java b/1401417015 AngelFlag/exam2/src/exam2/Product.java new file mode 100644 index 0000000..c305e59 --- /dev/null +++ b/1401417015 AngelFlag/exam2/src/exam2/Product.java @@ -0,0 +1,24 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2; + +/** + * + * @author THE NET + */ +public class Product { + + protected double price; + + public Product(double price) { + this.price = price; + } + + public double getPrice() { + return price; + } + +} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Ski.java b/1401417015 AngelFlag/exam2/src/exam2/Ski.java new file mode 100644 index 0000000..7a67c1f --- /dev/null +++ b/1401417015 AngelFlag/exam2/src/exam2/Ski.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2; + +/** + * + * @author THE NET + */ +public class Ski extends Product { + private double width; + private double length; + + public Ski(double width, double lenght, double price) { + super(price); + this.width = width; + this.length = length; + } + + @Override + public String toString() { + return "Ski{" + "width=" + width + ", length=" + length + "-" + price + '}'; + } + + +} diff --git a/1401417015 AngelFlag/exam2_10/build.xml b/1401417015 AngelFlag/exam2_10/build.xml new file mode 100644 index 0000000..e08614a --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_10. + + + diff --git a/1401417015 AngelFlag/exam2_10/manifest.mf b/1401417015 AngelFlag/exam2_10/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml new file mode 100644 index 0000000..8fbde42 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties new file mode 100644 index 0000000..b42d640 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=ffab03e4 +build.xml.script.CRC32=a74c4f74 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=ffab03e4 +nbproject/build-impl.xml.script.CRC32=2bcf1e0c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_10/nbproject/project.properties b/1401417015 AngelFlag/exam2_10/nbproject/project.properties new file mode 100644 index 0000000..287e58d --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_10.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_10.Exam2_10 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_10/nbproject/project.xml b/1401417015 AngelFlag/exam2_10/nbproject/project.xml new file mode 100644 index 0000000..bf5ebe9 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_10 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_11/build.xml b/1401417015 AngelFlag/exam2_11/build.xml new file mode 100644 index 0000000..e258c54 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_11. + + + diff --git a/1401417015 AngelFlag/exam2_11/manifest.mf b/1401417015 AngelFlag/exam2_11/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml new file mode 100644 index 0000000..7b957e7 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties new file mode 100644 index 0000000..0a0ea93 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=f7b88fc2 +build.xml.script.CRC32=895af904 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=f7b88fc2 +nbproject/build-impl.xml.script.CRC32=e0ecfbcf +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_11/nbproject/project.properties b/1401417015 AngelFlag/exam2_11/nbproject/project.properties new file mode 100644 index 0000000..c63106f --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_11.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_11.Exam2_11 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_11/nbproject/project.xml b/1401417015 AngelFlag/exam2_11/nbproject/project.xml new file mode 100644 index 0000000..a5ed6a8 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_11 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java new file mode 100644 index 0000000..13d65b1 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java @@ -0,0 +1,48 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_11; +//import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_11 { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + int[] myArray = {1,2,3,4,5}; + int[] array = {1,2,3,4,5}; + m1(myArray); + m2(array); + } + + public static void m1(int[] m) { + + for (int i=0; i=0; i--){ + System.out.println(n[i]); + + } + } + +//Scanner inphut = new Scanner(System.in); + //int n = input.nextInt(); + //int[] array = new int[n]; + +//for(int i= 0; i < n; i++) { + //array[i] = input.nextInt(); + + } + +} +} diff --git a/1401417015 AngelFlag/exam2_11/src/java/util/input.java b/1401417015 AngelFlag/exam2_11/src/java/util/input.java new file mode 100644 index 0000000..7c02ef6 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/src/java/util/input.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package java.util; + +/** + * + * @author THE NET + */ +public class input { + +} diff --git a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java index f1c6b0b..134cf09 100644 --- a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java +++ b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java @@ -18,10 +18,9 @@ public static void main(String[] args) { int i = 1; while(i<11) { - System.out.println(i); - i=i+1; - - // TODO code application logic here + System.out.println(i); + i=i+1; } } } + diff --git a/1401417015 AngelFlag/exam2_3/build.xml b/1401417015 AngelFlag/exam2_3/build.xml new file mode 100644 index 0000000..f0d12c2 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_3. + + + diff --git a/1401417015 AngelFlag/exam2_3/manifest.mf b/1401417015 AngelFlag/exam2_3/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml new file mode 100644 index 0000000..614fab2 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties new file mode 100644 index 0000000..d680479 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=4e4d1dd4 +build.xml.script.CRC32=ee8e34eb +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=4e4d1dd4 +nbproject/build-impl.xml.script.CRC32=0df91ff8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_3/nbproject/project.properties b/1401417015 AngelFlag/exam2_3/nbproject/project.properties new file mode 100644 index 0000000..1e18f64 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_3.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_3.Exam2_3 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_3/nbproject/project.xml b/1401417015 AngelFlag/exam2_3/nbproject/project.xml new file mode 100644 index 0000000..2633cec --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_3 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java b/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java new file mode 100644 index 0000000..5937382 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_3; + +/** + * + * @author THE NET + */ +public class Exam2_3 { + + /** + * @param args the command line arguments + */ + //Отпечатайте 5 пъти буквата ‘а’ и веднага след това 10 пъти ‘б’. + public static void main(String[] args) { + int i; + for(i=1; i<=5; i++); + + System.out.println("a"); + for(i=1; i<=10; i--); + System.out.println("B"); + + } + +} diff --git a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java index abb4232..f9889d7 100644 --- a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java +++ b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java @@ -9,29 +9,22 @@ * * @author THE NET */ + public class Exam2_41 { public static void max1(int i1, int i2){ - int max = i1; - if (max < i2) - max = i2; - - System.out.println(max); + int max = i1; + if (max < i2) + max = i2; + + System.out.println(max); } //Създайте метод, който извежда максималното от две цели числа зададени като формални параметри. //Извикайте метода в основната програма. - public static void main(String[] args) { + public static void main(String[] args) { max1(2,25); max1(1,23); - max1(34,24); + max1(34,4); - } - - - { - - - } - -} + } diff --git a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java index 88b4abd..1825164 100644 --- a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java +++ b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java @@ -16,8 +16,8 @@ public class Exam2_6 { public static void m1(int a, int b){ int m = a; - if (m < b); - m = a; + if (m > b) + m = b; // System.out.println(m); diff --git a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java index 41bbd40..f04552d 100644 --- a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java +++ b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java @@ -16,26 +16,27 @@ public class Exam2_7menu { */ public static void main(String[] args) { System.out.println("Меню"); // Извеждане на менюто в конзолата -System.out.println(" 1. Теглене на сума"); -System.out.println(" 2. Промяна на PIN"); -System.out.println(" 3. Проверка на наличност"); -System.out.println(" 4. Настройки"); -System.out.println(" 5. Изход"); -System.out.print("Изберете възможност (1-5): "); + System.out.println(" 1. Теглене на сума"); + System.out.println(" 2. Промяна на PIN"); + System.out.println(" 3. Проверка на наличност"); + System.out.println(" 4. Настройки"); + System.out.println(" 5. Изход"); + System.out.print("Изберете възможност (1-5): "); -Scanner scanner = new Scanner(System.in); -int избор = scanner.nextInt(); -String текст; -switch(избор){ // В зависимост от стойността на „избор”... -case 1: текст = "Вие избрахте 1: Теглене на сума"; break; -case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; -case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; -case 4: текст = "Вие избрахте 4: Настройки"; break; -case 5: текст = "Вие избрахте 5: Изход"; break; -default: текст = "Въвели сте грешен избор!"; + Scanner Keyboard = new Scanner(System.in); + int избор = Keyboard.nextInt(); + + String текст; + switch(избор){ // В зависимост от стойността на „избор”... + case 1: текст = "Вие избрахте 1: Теглене на сума"; break; + case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; + case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; + case 4: текст = "Вие избрахте 4: Настройки"; break; + case 5: текст = "Вие избрахте 5: Изход"; break; + default: текст = "Въвели сте грешен избор!"; } -System.out.println(текст ); -scanner.close(); + System.out.println(текст ); + Keyboard.close(); } diff --git a/1401417015 AngelFlag/exam2_9/build.xml b/1401417015 AngelFlag/exam2_9/build.xml new file mode 100644 index 0000000..6075e42 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_9. + + + diff --git a/1401417015 AngelFlag/exam2_9/manifest.mf b/1401417015 AngelFlag/exam2_9/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml new file mode 100644 index 0000000..08946c0 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties new file mode 100644 index 0000000..35d3017 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=1ef664a8 +build.xml.script.CRC32=27c40304 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=1ef664a8 +nbproject/build-impl.xml.script.CRC32=fea2bf29 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_9/nbproject/project.properties b/1401417015 AngelFlag/exam2_9/nbproject/project.properties new file mode 100644 index 0000000..f758b4e --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam2_9.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam2_9.Exam2_9 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_9/nbproject/project.xml b/1401417015 AngelFlag/exam2_9/nbproject/project.xml new file mode 100644 index 0000000..7444d8a --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam2_9 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java b/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java new file mode 100644 index 0000000..865f5ad --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java @@ -0,0 +1,59 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_9; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_9 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Изберете число от едно до дванадесет:"); + //System.out.println ("1 ");//= Януари + //System.out.println ("2"); //= Февруари + //System.out.println ("3"); //= Март + //System.out.println ("4"); //= Април + //System.out.println ("5"); //= Май + //System.out.println ("6"); //= Юни + //System.out.println ("7"); //= Юли + //System.out.println ("8"); //= Август + //System.out.println ("9");//= Септември + //System.out.println ("10");// = Октомври + //System.out.println ("11");//; = Ноември + //System.out.println ("12"); //= Декември + + + Scanner Keyboard = new Scanner(System.in); + int избор = Keyboard.nextInt(); + String Текст; + + do{ + System.out.println("Изберете число от едно до дванадесет"); + избор= Keyboard.nextInt(); + switch(избор){ + case 1: Текст = "Вие избрахте 1 - Януари"; break; + case 2: Текст = "Вие избрахте 2 - Февруари";break; + case 3: Текст = "Вие избрахте 3 - Март"; break; + case 4: Текст = "Вие избрахте 4 - Април";break; + case 5: Текст = "Вие избрахте 5 - МАй";break; + case 6: Текст = "Вие избрахте 6 - Юни";break; + case 7: Текст = "Вие избрахте 7 - Юли";break; + case 8: Текст = "Вие избрахте 8 - Август";break; + case 9: Текст = "Вие избрахте 9 - Септември";break; + case 10: Текст = "Вие избрахте 10 - Октомври";break; + case 11: Текст = "Вие избрахте 11 - Ноември";break; + case 12: Текст = "Вие избрахте 12 - Декември";break; + default: Текст = "Въведете число от едно до дванадесет!"; + } + System.out.println(Текст); + }while(избор!=13); + Keyboard.close(); + } +} diff --git a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java index dd0cf6e..e61b616 100644 --- a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java +++ b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java @@ -18,7 +18,7 @@ public class Exam2task2 { public static void main(String[] args) { // TODO code application logic here - for(int i=20; i>1; i=i-2) + for(int i=22; i>1; i=i-2) System.out.println(i); } diff --git a/1401417015 AngelFlag/exam3_1/build.xml b/1401417015 AngelFlag/exam3_1/build.xml new file mode 100644 index 0000000..95b2656 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_1. + + + diff --git a/1401417015 AngelFlag/exam3_1/manifest.mf b/1401417015 AngelFlag/exam3_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml new file mode 100644 index 0000000..fe1941c --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties new file mode 100644 index 0000000..f124158 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=79ba41a4 +build.xml.script.CRC32=dc450507 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=79ba41a4 +nbproject/build-impl.xml.script.CRC32=dbb486f9 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_1/nbproject/project.properties b/1401417015 AngelFlag/exam3_1/nbproject/project.properties new file mode 100644 index 0000000..551f4da --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam3_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam3_1.Exam3_1 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_1/nbproject/project.xml b/1401417015 AngelFlag/exam3_1/nbproject/project.xml new file mode 100644 index 0000000..624c96c --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam3_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java b/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java new file mode 100644 index 0000000..112e174 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_1; + +/** + * + * @author THE NET + */ +public class Exam3_1 { + + String Name; //String Name; + int Age; // int Age; + + public Exam3_1(String име, int възраст){ //public Exam3_1(String име, int възраст){ + Name = име; + Age = възраст; + } + public String toString() + { + return "My name is " + Name +" and I am " + Age + " years old"; + } + + public static void main(String[] args) { + Exam3_1 human = new Exam3_1("sadfas",26); + + System.out.print(human); + + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/nfs/build.xml b/1401417015 AngelFlag/nfs/build.xml new file mode 100644 index 0000000..b46dd1e --- /dev/null +++ b/1401417015 AngelFlag/nfs/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project nfs. + + + diff --git a/1401417015 AngelFlag/nfs/manifest.mf b/1401417015 AngelFlag/nfs/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/nfs/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/nfs/nbproject/build-impl.xml b/1401417015 AngelFlag/nfs/nbproject/build-impl.xml new file mode 100644 index 0000000..3d3c8e0 --- /dev/null +++ b/1401417015 AngelFlag/nfs/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/nfs/nbproject/genfiles.properties b/1401417015 AngelFlag/nfs/nbproject/genfiles.properties new file mode 100644 index 0000000..68a5f01 --- /dev/null +++ b/1401417015 AngelFlag/nfs/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=de28aaca +build.xml.script.CRC32=fb156e1f +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=de28aaca +nbproject/build-impl.xml.script.CRC32=5412882f +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/nfs/nbproject/project.properties b/1401417015 AngelFlag/nfs/nbproject/project.properties new file mode 100644 index 0000000..b98fded --- /dev/null +++ b/1401417015 AngelFlag/nfs/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/nfs.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=nfs.Nfs +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/nfs/nbproject/project.xml b/1401417015 AngelFlag/nfs/nbproject/project.xml new file mode 100644 index 0000000..dbdf597 --- /dev/null +++ b/1401417015 AngelFlag/nfs/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + nfs + + + + + + + + + diff --git a/1401417015 AngelFlag/nfs/src/Vehicle.java b/1401417015 AngelFlag/nfs/src/Vehicle.java new file mode 100644 index 0000000..af8fbf3 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/Vehicle.java @@ -0,0 +1,13 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +class Vehicle { + +} diff --git a/1401417015 AngelFlag/nfs/src/nfs/Drivable.java b/1401417015 AngelFlag/nfs/src/nfs/Drivable.java new file mode 100644 index 0000000..e1be095 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/Drivable.java @@ -0,0 +1,19 @@ +package nfs; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public interface Drivable { + void turnLeft(); + void turnRgight(); + void breakCar(); + void accelerate(); + +} diff --git a/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java b/1401417015 AngelFlag/nfs/src/nfs/Nfs.java similarity index 59% rename from 1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java rename to 1401417015 AngelFlag/nfs/src/nfs/Nfs.java index 02884b8..f12d9b6 100644 --- a/1401417015 AngelFlag/myWorld/src/myworld/MyWorld.java +++ b/1401417015 AngelFlag/nfs/src/nfs/Nfs.java @@ -3,27 +3,18 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ - -package myworld; +package nfs; /** * * @author THE NET */ -public class Person { +public class Nfs { /** * @param args the command line arguments */ public static void main(String[] args) { - - Person Stoyan = new Person(); - stoyan.name = "Stoyan:"; - stoyan.age = 50; - - System.out.println("I am a person, my name is :" + name) - - // TODO code application logic here } diff --git a/1401417015 AngelFlag/nfs/src/nfs/SportCar.java b/1401417015 AngelFlag/nfs/src/nfs/SportCar.java new file mode 100644 index 0000000..e33469a --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/SportCar.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nfs; + +/** + * + * @author THE NET + */ +public abstract class SportCar extends Vehicle { + public SportCar(String laber){ + setLabel(label); + setType("Sport Car"); + } +} + + @Override + public void turnLeft(){ + +} + @Override + public void turnRight(){ + + } + @Override + public void breakCar(){ + } \ No newline at end of file diff --git a/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java b/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java new file mode 100644 index 0000000..dd10bb1 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java @@ -0,0 +1,26 @@ +package nfs; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public abstract class Vehicle implements Drivable { + private String type; + private String label; + + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/build.xml b/1401417015 AngelFlag/oop1_MyWorld/build.xml new file mode 100644 index 0000000..520bd74 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project oop1_MyWorld. + + + diff --git a/1401417015 AngelFlag/oop1_MyWorld/manifest.mf b/1401417015 AngelFlag/oop1_MyWorld/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml b/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml new file mode 100644 index 0000000..3dbf5c2 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties b/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties new file mode 100644 index 0000000..7f1c291 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=be66a04b +build.xml.script.CRC32=a591477a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=be66a04b +nbproject/build-impl.xml.script.CRC32=d239c40d +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties new file mode 100644 index 0000000..736bafb --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/oop1_MyWorld.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=oop1_myworld.Oop1_MyWorld +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml new file mode 100644 index 0000000..848faf9 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + oop1_MyWorld + + + + + + + + + diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java new file mode 100644 index 0000000..3ba314d --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java @@ -0,0 +1,47 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Oop1_MyWorld { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + System.out.println("I am proud with my greatest invention PI " + Person.PI); + // TODO code application logic here + Person angel = new Person("Angel", 30); + //angel.name = "Angel"; + //angel.Age = 33; + //angel.setName("Angel"); + //angel.setAge(33); + //System.out.println("I am a person! My name is " + angel.name + " I am " + angel.Age + " Old"); + //System.out.println("I am a person! My name is " + angel.getName() + " I am " + angel.getage() + " Old"); + angel.introduceYourself(); + + Person mariya = new Person("mariya", 21); + //mariya.name = "Mari + // mariya.Age = 30; + //mariya.setName("Mariya"); + //mariya.setAge(30); + //System.out.println("I am a person! My name is " + mariya.name + " I am " + mariya.Age + " Old"); + //System.out.println("I am a person! My name is " + mariya.getName() + " I am " + mariya.getage() + " Old"); + + mariya.introduceYourself(); + Person Anonymous = new Person(); + + Anonymous.introduceYourself(); + //System.out.println("I am a person! My name is " + Anonymous.getName() + " I am " + Anonymous.getage() + " Old"); + + } + + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java new file mode 100644 index 0000000..e3806e7 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java @@ -0,0 +1,51 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Person { + //public String name; + //public int Age; + private String name; + private int age; + + public static final double PI = 3.14; + + public static String nationality = "Bulgarian."; + + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + public int getage() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Person(String name, int age){ + this.name = name; + this.age = age; + } + + public Person(){ + this("Anonymous", 22); + + } + + public void introduceYourself() + { + System.out.println("I am a person! My name is " + name + " I am " + age + " Old " + "and I am " + nationality); + } +} diff --git a/1401417015 AngelFlag/upr5_2/build.xml b/1401417015 AngelFlag/upr5_2/build.xml new file mode 100644 index 0000000..46bf614 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project upr5_2. + + + diff --git a/1401417015 AngelFlag/upr5_2/manifest.mf b/1401417015 AngelFlag/upr5_2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml b/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml new file mode 100644 index 0000000..f74be25 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties b/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties new file mode 100644 index 0000000..348b74d --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=97340415 +build.xml.script.CRC32=c62beafe +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=97340415 +nbproject/build-impl.xml.script.CRC32=6a5c2f1b +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/upr5_2/nbproject/project.properties b/1401417015 AngelFlag/upr5_2/nbproject/project.properties new file mode 100644 index 0000000..0270ac0 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/upr5_2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=upr5_2.Upr5_2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/upr5_2/nbproject/project.xml b/1401417015 AngelFlag/upr5_2/nbproject/project.xml new file mode 100644 index 0000000..2d9a126 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + upr5_2 + + + + + + + + + diff --git a/1401417015 AngelFlag/myWorld/src/myworld/Person.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java similarity index 88% rename from 1401417015 AngelFlag/myWorld/src/myworld/Person.java rename to 1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java index 47a04c2..2362e7b 100644 --- a/1401417015 AngelFlag/myWorld/src/myworld/Person.java +++ b/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package myworld; +package upr5_2; /** * diff --git a/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java new file mode 100644 index 0000000..7144ffa --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr5_2; + +/** + * + * @author THE NET + */ +public class Upr5_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} From 1e6a6ed7c2acd9b8f793dea93d411514593267bc Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 21:46:21 +0200 Subject: [PATCH 17/41] myworld --- 1401417015 AngelFlag/exam3_2/build.xml | 73 + 1401417015 AngelFlag/exam3_2/manifest.mf | 3 + .../exam3_2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam3_2/nbproject/genfiles.properties | 8 + .../exam3_2/nbproject/project.properties | 73 + .../exam3_2/nbproject/project.xml | 15 + .../exam3_2/src/exam3_2/Exam3_2.java | 34 + 7 files changed, 1619 insertions(+) create mode 100644 1401417015 AngelFlag/exam3_2/build.xml create mode 100644 1401417015 AngelFlag/exam3_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam3_2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam3_2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java diff --git a/1401417015 AngelFlag/exam3_2/build.xml b/1401417015 AngelFlag/exam3_2/build.xml new file mode 100644 index 0000000..c347dd2 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_2. + + + diff --git a/1401417015 AngelFlag/exam3_2/manifest.mf b/1401417015 AngelFlag/exam3_2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml new file mode 100644 index 0000000..a23ddef --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties new file mode 100644 index 0000000..2688f82 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=618ed5ce +build.xml.script.CRC32=a4b18d4a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=618ed5ce +nbproject/build-impl.xml.script.CRC32=a847b7c1 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_2/nbproject/project.properties b/1401417015 AngelFlag/exam3_2/nbproject/project.properties new file mode 100644 index 0000000..3b4ac7c --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam3_2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam3_2.Exam3_2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_2/nbproject/project.xml b/1401417015 AngelFlag/exam3_2/nbproject/project.xml new file mode 100644 index 0000000..b6398a9 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam3_2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java new file mode 100644 index 0000000..5be0a62 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_2; + +/** + * + * @author THE NET + */ +public class Exam3_2 { + + /** + * @param args the command line arguments + */ + + public static void srednoAritm(double m[]){ + + double suma = 0; + for (int i = 0; i < m.length; i++) + suma += m[i]; + + double rezultat = suma / m.length; + System.out.println("Средно аритметичната сума е: " + rezultat); + } + + public static void main(String[] args) { + double m[] = {4.5,-8.1,9,-3,8}; + + srednoAritm(m); + +} +} From f271ffc43d7264b526a4ac94459397e6ab4f293a Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 21:47:18 +0200 Subject: [PATCH 18/41] myworld --- 1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java index 5be0a62..427ea17 100644 --- a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java +++ b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java @@ -26,7 +26,7 @@ public static void srednoAritm(double m[]){ } public static void main(String[] args) { - double m[] = {4.5,-8.1,9,-3,8}; + double m[] = {4.8,-4.1,5,-2,7}; srednoAritm(m); From a4e7be48413ab9bc7fdc4b380ad78fe711d39ab7 Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 21:55:58 +0200 Subject: [PATCH 19/41] 3.3 --- .../exam3_3/src/exam3_3/Exam3_3.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java diff --git a/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java b/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java new file mode 100644 index 0000000..6bfbca9 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_3; + +/** + * + * @author THE NET + */ +public class Exam3_3 { + + /** + * @param args the command line arguments + */ + + + public static void sumPluselem(double m[]){ + double suma = 0; + for (int i = 0; i < m.length; i++) + if (m[i] > 0) + suma += m[i]; + + System.out.println("Сумата на положителните елементи: " + suma); + + } + public static void main(String[] args) { + double m[] = {4.8,-4.1,5,-2,7}; + + sumPluselem(m); + } + +} From c539a6cc190a42bc72cc3b4349e847120b629a61 Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 22:17:57 +0200 Subject: [PATCH 20/41] 3.3 --- 1401417015 AngelFlag/factorial/build.xml | 73 + 1401417015 AngelFlag/factorial/manifest.mf | 3 + .../factorial/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../factorial/nbproject/genfiles.properties | 8 + .../factorial/nbproject/project.properties | 73 + .../factorial/nbproject/project.xml | 15 + .../factorial/src/factorial/Factorial.java | 39 + 7 files changed, 1624 insertions(+) create mode 100644 1401417015 AngelFlag/factorial/build.xml create mode 100644 1401417015 AngelFlag/factorial/manifest.mf create mode 100644 1401417015 AngelFlag/factorial/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/factorial/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/factorial/nbproject/project.properties create mode 100644 1401417015 AngelFlag/factorial/nbproject/project.xml create mode 100644 1401417015 AngelFlag/factorial/src/factorial/Factorial.java diff --git a/1401417015 AngelFlag/factorial/build.xml b/1401417015 AngelFlag/factorial/build.xml new file mode 100644 index 0000000..fa5f02f --- /dev/null +++ b/1401417015 AngelFlag/factorial/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project factorial. + + + diff --git a/1401417015 AngelFlag/factorial/manifest.mf b/1401417015 AngelFlag/factorial/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/factorial/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/factorial/nbproject/build-impl.xml b/1401417015 AngelFlag/factorial/nbproject/build-impl.xml new file mode 100644 index 0000000..d1c1252 --- /dev/null +++ b/1401417015 AngelFlag/factorial/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/factorial/nbproject/genfiles.properties b/1401417015 AngelFlag/factorial/nbproject/genfiles.properties new file mode 100644 index 0000000..3da7d38 --- /dev/null +++ b/1401417015 AngelFlag/factorial/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=865c1925 +build.xml.script.CRC32=7da14078 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=865c1925 +nbproject/build-impl.xml.script.CRC32=1b89d452 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/factorial/nbproject/project.properties b/1401417015 AngelFlag/factorial/nbproject/project.properties new file mode 100644 index 0000000..743194a --- /dev/null +++ b/1401417015 AngelFlag/factorial/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/factorial.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=factorial.Factorial +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/factorial/nbproject/project.xml b/1401417015 AngelFlag/factorial/nbproject/project.xml new file mode 100644 index 0000000..98ad074 --- /dev/null +++ b/1401417015 AngelFlag/factorial/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + factorial + + + + + + + + + diff --git a/1401417015 AngelFlag/factorial/src/factorial/Factorial.java b/1401417015 AngelFlag/factorial/src/factorial/Factorial.java new file mode 100644 index 0000000..1bd787e --- /dev/null +++ b/1401417015 AngelFlag/factorial/src/factorial/Factorial.java @@ -0,0 +1,39 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + + +package factorial; +import java.util.*; + +/** + * + * @author THE NET + */ +public class Factorial { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int n, c, fact = 1; + + System.out.println("Enter an integer to calculate factorial"); + Scanner in = new Scanner(System.in); + n = in.nextInt(); + + if ( n < 0 ) + System.out.println("Number should be non-negative."); + else + { + for ( c = 1 ; c <= n ; c++ ) + fact = fact*c; + + System.out.println("Factorial of "+n+" is = "+fact); + } + +} +} + From 5523de93a86ffae788ff96f1f3fc7be69054b161 Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 23:06:51 +0200 Subject: [PATCH 21/41] Fibonacci --- 1401417015 AngelFlag/Fibonacci/build.xml | 73 + 1401417015 AngelFlag/Fibonacci/manifest.mf | 3 + .../Fibonacci/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../Fibonacci/nbproject/genfiles.properties | 8 + .../Fibonacci/nbproject/project.properties | 73 + .../Fibonacci/nbproject/project.xml | 15 + .../Fibonacci/src/fibonacci/Fibonacci.java | 34 + 7 files changed, 1619 insertions(+) create mode 100644 1401417015 AngelFlag/Fibonacci/build.xml create mode 100644 1401417015 AngelFlag/Fibonacci/manifest.mf create mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/project.properties create mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/project.xml create mode 100644 1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java diff --git a/1401417015 AngelFlag/Fibonacci/build.xml b/1401417015 AngelFlag/Fibonacci/build.xml new file mode 100644 index 0000000..ac8705f --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Fibonacci. + + + diff --git a/1401417015 AngelFlag/Fibonacci/manifest.mf b/1401417015 AngelFlag/Fibonacci/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml b/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml new file mode 100644 index 0000000..90b63c2 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties b/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties new file mode 100644 index 0000000..d21c6a3 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=b3a6f42f +build.xml.script.CRC32=1fd88a97 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=b3a6f42f +nbproject/build-impl.xml.script.CRC32=1fa015b8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/project.properties b/1401417015 AngelFlag/Fibonacci/nbproject/project.properties new file mode 100644 index 0000000..aaebd87 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/Fibonacci.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=fibonacci.Fibonacci +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/project.xml b/1401417015 AngelFlag/Fibonacci/nbproject/project.xml new file mode 100644 index 0000000..0e5a402 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + Fibonacci + + + + + + + + + diff --git a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java new file mode 100644 index 0000000..21f7af3 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package fibonacci; +import java.util.*; + +/** + * + * @author THE NET + */ +public class Fibonacci { +//using formula from GOD KNOWS WHERE......BUT IT WORKSSSSS + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Scanner input = new Scanner(System.in); + System.out.print("enter number:"); + int number = input.nextInt(); + int count=1; + int c =1,b=1,a=0; + while(count <= number){ + c= b+a; + System.out.print(c); + a = b; + b = c; + count++; + } + + } +} From 7f34b630c2d2d3f251f8c8a0ae1d20045c6f96d2 Mon Sep 17 00:00:00 2001 From: THE NET Date: Mon, 15 Dec 2014 23:48:28 +0200 Subject: [PATCH 22/41] --- 1401417015 AngelFlag/exam4_1/build.xml | 73 + 1401417015 AngelFlag/exam4_1/manifest.mf | 3 + .../exam4_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam4_1/nbproject/genfiles.properties | 8 + .../exam4_1/nbproject/project.properties | 73 + .../exam4_1/nbproject/project.xml | 15 + .../exam4_1/src/exam4_1/Exam4_1.java | 31 + 7 files changed, 1616 insertions(+) create mode 100644 1401417015 AngelFlag/exam4_1/build.xml create mode 100644 1401417015 AngelFlag/exam4_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam4_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam4_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java diff --git a/1401417015 AngelFlag/exam4_1/build.xml b/1401417015 AngelFlag/exam4_1/build.xml new file mode 100644 index 0000000..b294262 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam4_1. + + + diff --git a/1401417015 AngelFlag/exam4_1/manifest.mf b/1401417015 AngelFlag/exam4_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml new file mode 100644 index 0000000..097af78 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties new file mode 100644 index 0000000..39cdd51 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8e8b9d10 +build.xml.script.CRC32=9ee045bf +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8e8b9d10 +nbproject/build-impl.xml.script.CRC32=6af7a273 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_1/nbproject/project.properties b/1401417015 AngelFlag/exam4_1/nbproject/project.properties new file mode 100644 index 0000000..d1b1c63 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam4_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam4_1.Exam4_1 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_1/nbproject/project.xml b/1401417015 AngelFlag/exam4_1/nbproject/project.xml new file mode 100644 index 0000000..2121800 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam4_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java b/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java new file mode 100644 index 0000000..83e1cbf --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_1; + +/** + * + * @author THE NET + */ +public class Exam4_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин","Ивдианаполис"}; + низовеЗапочващиС(imena, "Ив"); + + } + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Низове започващи с " + search + ":"); + + for(int i=0; i Date: Tue, 16 Dec 2014 00:01:00 +0200 Subject: [PATCH 23/41] --- 1401417015 AngelFlag/exam4_2/build.xml | 73 + 1401417015 AngelFlag/exam4_2/manifest.mf | 3 + .../exam4_2/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam4_2/nbproject/genfiles.properties | 8 + .../exam4_2/nbproject/project.properties | 73 + .../exam4_2/nbproject/project.xml | 15 + .../exam4_2/src/exam4_2/Exam4_2.java | 31 + 7 files changed, 1616 insertions(+) create mode 100644 1401417015 AngelFlag/exam4_2/build.xml create mode 100644 1401417015 AngelFlag/exam4_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam4_2/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam4_2/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java diff --git a/1401417015 AngelFlag/exam4_2/build.xml b/1401417015 AngelFlag/exam4_2/build.xml new file mode 100644 index 0000000..cf1b8be --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam4_2. + + + diff --git a/1401417015 AngelFlag/exam4_2/manifest.mf b/1401417015 AngelFlag/exam4_2/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml new file mode 100644 index 0000000..bb6e379 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties new file mode 100644 index 0000000..7a28d79 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=96bf097a +build.xml.script.CRC32=e614cdf2 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=96bf097a +nbproject/build-impl.xml.script.CRC32=1904934b +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_2/nbproject/project.properties b/1401417015 AngelFlag/exam4_2/nbproject/project.properties new file mode 100644 index 0000000..40ea6c2 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam4_2.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam4_2.Exam4_2 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_2/nbproject/project.xml b/1401417015 AngelFlag/exam4_2/nbproject/project.xml new file mode 100644 index 0000000..3852f8e --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam4_2 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java new file mode 100644 index 0000000..2f4ba87 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_2; + +/** + * + * @author THE NET + */ +public class Exam4_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; + низовеЗапочващиС(imena, "и"); + } + + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Елементи съдържащи 'и'" + search + ":"); + + for (int i=0; i Date: Tue, 16 Dec 2014 18:32:16 +0200 Subject: [PATCH 24/41] --- 1401417015 AngelFlag/exam4_3/build.xml | 73 + 1401417015 AngelFlag/exam4_3/manifest.mf | 3 + .../exam4_3/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam4_3/nbproject/genfiles.properties | 8 + .../exam4_3/nbproject/project.properties | 73 + .../exam4_3/nbproject/project.xml | 15 + .../exam4_3/src/exam4_3/Exam4_3.java | 31 + 7 files changed, 1616 insertions(+) create mode 100644 1401417015 AngelFlag/exam4_3/build.xml create mode 100644 1401417015 AngelFlag/exam4_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam4_3/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam4_3/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java diff --git a/1401417015 AngelFlag/exam4_3/build.xml b/1401417015 AngelFlag/exam4_3/build.xml new file mode 100644 index 0000000..f4d5bc5 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam4_3. + + + diff --git a/1401417015 AngelFlag/exam4_3/manifest.mf b/1401417015 AngelFlag/exam4_3/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml new file mode 100644 index 0000000..3015af4 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties new file mode 100644 index 0000000..1a94e38 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=9eac855c +build.xml.script.CRC32=7897b7f6 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=9eac855c +nbproject/build-impl.xml.script.CRC32=817a819c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_3/nbproject/project.properties b/1401417015 AngelFlag/exam4_3/nbproject/project.properties new file mode 100644 index 0000000..acb13ad --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam4_3.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam4_3.Exam4_3 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_3/nbproject/project.xml b/1401417015 AngelFlag/exam4_3/nbproject/project.xml new file mode 100644 index 0000000..8bcd83e --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam4_3 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java b/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java new file mode 100644 index 0000000..d068fe0 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_3; + +/** + * + * @author THE NET + */ +public class Exam4_3 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; + низовеЗавършващи(imena, "ин"); + // За масив от низове, изведете елементите завършващи с "ин" + } + public static void низовеЗавършващи(String m[], String search){ + System.out.println("низовеЗавършващи s " + search + ":"); + + for (int i=0; i Date: Tue, 16 Dec 2014 22:14:51 +0200 Subject: [PATCH 25/41] --- 1401417015 AngelFlag/exam5_1/build.xml | 73 + 1401417015 AngelFlag/exam5_1/manifest.mf | 3 + .../exam5_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam5_1/nbproject/genfiles.properties | 8 + .../exam5_1/nbproject/project.properties | 73 + .../exam5_1/nbproject/project.xml | 15 + .../exam5_1/src/exam5_1/Exam5_1.java | 27 + .../exam5_1/src/exam5_1/Person.java | 17 + 8 files changed, 1629 insertions(+) create mode 100644 1401417015 AngelFlag/exam5_1/build.xml create mode 100644 1401417015 AngelFlag/exam5_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam5_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam5_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java create mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java diff --git a/1401417015 AngelFlag/exam5_1/build.xml b/1401417015 AngelFlag/exam5_1/build.xml new file mode 100644 index 0000000..9e060b3 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_1. + + + diff --git a/1401417015 AngelFlag/exam5_1/manifest.mf b/1401417015 AngelFlag/exam5_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml new file mode 100644 index 0000000..c2bbeb0 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties new file mode 100644 index 0000000..d3ea423 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=a95bd92c +build.xml.script.CRC32=4a5c861a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=a95bd92c +nbproject/build-impl.xml.script.CRC32=5737189d +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_1/nbproject/project.properties b/1401417015 AngelFlag/exam5_1/nbproject/project.properties new file mode 100644 index 0000000..a15e805 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam5_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam5_1.Exam5_1 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_1/nbproject/project.xml b/1401417015 AngelFlag/exam5_1/nbproject/project.xml new file mode 100644 index 0000000..bfbe2a3 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam5_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java new file mode 100644 index 0000000..6cb7282 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_1; + +/** + * + * @author THE NET + */ +public class Exam5_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person(); + Angel.name = "Angel"; + Angel.surname = "Bayraktarov"; + Angel.age = 34; + + System.out.println("I am a person! My name is " + Angel.name + " " + Angel.surname + " and I am " + Angel.age + " old"); + } + +} diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java new file mode 100644 index 0000000..534d9f1 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_1; + +/** + * + * @author THE NET + */ +public class Person { + public String name; + public String surname; + public int age; + +} From ae901b087d9adf5dfed5f819cd1dd074a306320f Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 17 Dec 2014 00:02:38 +0200 Subject: [PATCH 26/41] --- 1401417015 AngelFlag/exam5_3/build.xml | 73 + 1401417015 AngelFlag/exam5_3/manifest.mf | 3 + .../exam5_3/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam5_3/nbproject/genfiles.properties | 8 + .../exam5_3/nbproject/project.properties | 73 + .../exam5_3/nbproject/project.xml | 15 + .../exam5_3/src/exam5_3/Exam5_3.java | 41 + .../exam5_3/src/exam5_3/Person.java | 56 + 8 files changed, 1682 insertions(+) create mode 100644 1401417015 AngelFlag/exam5_3/build.xml create mode 100644 1401417015 AngelFlag/exam5_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam5_3/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam5_3/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java create mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java diff --git a/1401417015 AngelFlag/exam5_3/build.xml b/1401417015 AngelFlag/exam5_3/build.xml new file mode 100644 index 0000000..0cbe18a --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_3. + + + diff --git a/1401417015 AngelFlag/exam5_3/manifest.mf b/1401417015 AngelFlag/exam5_3/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml new file mode 100644 index 0000000..c7c2a70 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties new file mode 100644 index 0000000..9793069 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=b97cc160 +build.xml.script.CRC32=ac2b7453 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=b97cc160 +nbproject/build-impl.xml.script.CRC32=bcba3b72 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_3/nbproject/project.properties b/1401417015 AngelFlag/exam5_3/nbproject/project.properties new file mode 100644 index 0000000..3312005 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam5_3.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam5_3.Exam5_3 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_3/nbproject/project.xml b/1401417015 AngelFlag/exam5_3/nbproject/project.xml new file mode 100644 index 0000000..76a5a9c --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam5_3 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java new file mode 100644 index 0000000..a5c95cf --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_3; + +/** + * + * @author THE NET + */ +public class Exam5_3 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person("Angel","Bayraktarov", 30); + //Angel.name = "Angel"; + //Angel.age = 33; + //Angel.setName("Angel"); + //Angel.setSurname("Bayraktarov"); + //Angel.setAge(33); + Angel.introduceYourself(); + + //System.out.println("I am a person! My name is " + Angel.getName() + " " + Angel.getSurname() + " and I am " + Angel.getAge() + " Old"); + + Person Nina = new Person("Nina", "Genov", 30); + //Nina.setName("Nina"); + //Nina.setSurname("Genov"); + //Nina.setAge(30); + Nina.introduceYourself(); + //System.out.println("I am a person! My name is " + Nina.getName() + " " + Nina.getSurname() + " and I am " + Nina.getAge() + " Old"); + + Person Ivan = new Person(); + Ivan.introduceYourself(); + } + + +} diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java new file mode 100644 index 0000000..292f547 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java @@ -0,0 +1,56 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_3; + +/** + * + * @author THE NET + */ +public class Person { + private String name; + private String surname; + private int age; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } + + public Person(String name, String surname, int age) { + this.name = name; + this.surname = surname; + this.age = age; + } + + public Person(){ + this("Ivan","Hadj",20); + } + + public void introduceYourself(){ + System.out.println("I am a person! My name is " + name +" " + surname + " and I am " + age + " Old"); + } + + +} From d89b3b14e2d94fe9144848132a7adb6355ed2aef Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 17 Dec 2014 00:02:38 +0200 Subject: [PATCH 27/41] --- 1401417015 AngelFlag/exam5_5/build.xml | 73 + 1401417015 AngelFlag/exam5_5/manifest.mf | 3 + .../exam5_5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam5_5/nbproject/genfiles.properties | 8 + .../exam5_5/nbproject/project.properties | 73 + .../exam5_5/nbproject/project.xml | 15 + .../exam5_5/src/exam5_5/Exam5_5.java | 25 + .../exam5_5/src/exam5_5/Object.java | 15 + 8 files changed, 1625 insertions(+) create mode 100644 1401417015 AngelFlag/exam5_5/build.xml create mode 100644 1401417015 AngelFlag/exam5_5/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam5_5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam5_5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java create mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java diff --git a/1401417015 AngelFlag/exam5_5/build.xml b/1401417015 AngelFlag/exam5_5/build.xml new file mode 100644 index 0000000..ae21b73 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_5. + + + diff --git a/1401417015 AngelFlag/exam5_5/manifest.mf b/1401417015 AngelFlag/exam5_5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml new file mode 100644 index 0000000..256abed --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties new file mode 100644 index 0000000..8c7aba9 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=8915e9b4 +build.xml.script.CRC32=5dc264c9 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=8915e9b4 +nbproject/build-impl.xml.script.CRC32=5b5c5902 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_5/nbproject/project.properties b/1401417015 AngelFlag/exam5_5/nbproject/project.properties new file mode 100644 index 0000000..2221325 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam5_5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam5_5.Exam5_5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_5/nbproject/project.xml b/1401417015 AngelFlag/exam5_5/nbproject/project.xml new file mode 100644 index 0000000..a951c67 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam5_5 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java new file mode 100644 index 0000000..6d62863 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_5; + +/** + * + * @author THE NET + */ +public class Exam5_5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Object Alabala = new Object(); + Alabala.object = "Object"; + + System.out.println(Alabala.object); + } + +} diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java new file mode 100644 index 0000000..4bc9b0a --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java @@ -0,0 +1,15 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_5; + +/** + * + * @author THE NET + */ +public class Object { + public String object; + +} From 64817bf9c3027f1580cda99ba9a0f80c96745c8d Mon Sep 17 00:00:00 2001 From: THE NET Date: Wed, 17 Dec 2014 02:00:04 +0200 Subject: [PATCH 28/41] --- 1401417015 AngelFlag/exam5_8/build.xml | 73 + 1401417015 AngelFlag/exam5_8/manifest.mf | 3 + .../exam5_8/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam5_8/nbproject/genfiles.properties | 8 + .../exam5_8/nbproject/project.properties | 73 + .../exam5_8/nbproject/project.xml | 15 + .../exam5_8/src/exam5_8/Dog.java | 41 + .../exam5_8/src/exam5_8/Exam5_8.java | 27 + .../exam5_8/src/exam5_8/Person.java | 40 + 9 files changed, 1693 insertions(+) create mode 100644 1401417015 AngelFlag/exam5_8/build.xml create mode 100644 1401417015 AngelFlag/exam5_8/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam5_8/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam5_8/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java diff --git a/1401417015 AngelFlag/exam5_8/build.xml b/1401417015 AngelFlag/exam5_8/build.xml new file mode 100644 index 0000000..8653bc9 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_8. + + + diff --git a/1401417015 AngelFlag/exam5_8/manifest.mf b/1401417015 AngelFlag/exam5_8/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml new file mode 100644 index 0000000..04f81a1 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties new file mode 100644 index 0000000..564da1b --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=e1d4343a +build.xml.script.CRC32=fbe239b8 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=e1d4343a +nbproject/build-impl.xml.script.CRC32=d79f8974 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_8/nbproject/project.properties b/1401417015 AngelFlag/exam5_8/nbproject/project.properties new file mode 100644 index 0000000..29caf4a --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam5_8.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam5_8.Exam5_8 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_8/nbproject/project.xml b/1401417015 AngelFlag/exam5_8/nbproject/project.xml new file mode 100644 index 0000000..b314f6d --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam5_8 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java new file mode 100644 index 0000000..e55a139 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Dog { + private String Poroda; + private int age; + + public String getPoroda() { + return Poroda; + } + + public void setPoroda(String Poroda) { + this.Poroda = Poroda; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Dog(String Poroda, int age) { + this.Poroda = Poroda; + this.age = age; + } + public void moetoDog(){ + + System.out.println(" и моето куче е " + Poroda + " и е на " + age + " години"); + } + +} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java new file mode 100644 index 0000000..c7c29a4 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Exam5_8 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person("Angel",30); + + Angel.introduceYourself(); + + Dog sharo = new Dog("Sharo",5); + sharo.moetoDog(); + } + +} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java new file mode 100644 index 0000000..0cf26ce --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Person { + private String name; + private int age; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Person(String name, int age) { + this.name = name; + this.age = age; + } + public void introduceYourself(){ + System.out.println("I am a person! My name is " + name + " I am " + age + " Old " ); + } + +} From 4ec436c4c0424ba37ffbc3aeb462b863183021bd Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 18 Dec 2014 15:30:08 +0200 Subject: [PATCH 29/41] --- 1401417015 AngelFlag/project1_1/build.xml | 73 + 1401417015 AngelFlag/project1_1/manifest.mf | 3 + .../project1_1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../project1_1/nbproject/genfiles.properties | 8 + .../project1_1/nbproject/project.properties | 73 + .../project1_1/nbproject/project.xml | 15 + .../project1_1/src/project1_1/Project1_1.java | 49 + 7 files changed, 1634 insertions(+) create mode 100644 1401417015 AngelFlag/project1_1/build.xml create mode 100644 1401417015 AngelFlag/project1_1/manifest.mf create mode 100644 1401417015 AngelFlag/project1_1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/project1_1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/project1_1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/project1_1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java diff --git a/1401417015 AngelFlag/project1_1/build.xml b/1401417015 AngelFlag/project1_1/build.xml new file mode 100644 index 0000000..c0e9842 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project1_1. + + + diff --git a/1401417015 AngelFlag/project1_1/manifest.mf b/1401417015 AngelFlag/project1_1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml b/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml new file mode 100644 index 0000000..d406dbf --- /dev/null +++ b/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties b/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties new file mode 100644 index 0000000..1ef6991 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=9ed391e6 +build.xml.script.CRC32=6cf48811 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=9ed391e6 +nbproject/build-impl.xml.script.CRC32=fddda22b +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project1_1/nbproject/project.properties b/1401417015 AngelFlag/project1_1/nbproject/project.properties new file mode 100644 index 0000000..114ca30 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/project1_1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=project1_1.Project1_1 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/project1_1/nbproject/project.xml b/1401417015 AngelFlag/project1_1/nbproject/project.xml new file mode 100644 index 0000000..758ce10 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + project1_1 + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java b/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java new file mode 100644 index 0000000..e13ab27 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java @@ -0,0 +1,49 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project1_1; +import java.util.Random; + +//б) произведението на ненулевите нечетни елементи; +/** + * + * @author THE NET + */ +public class Project1_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + int arr[] = new int[6]; + + int multiplied = 1;//инициализираме сума, която ти трябва за формулата; + + for (int i = 0; i < arr.length; i++ ) { + + arr[i] = generate(); + System.out.println(arr[i]); + + // тук изваждаме всички нечетни числа, които получаваме, когато разделим на две и имаме остатък едно! + //различно от нула. + + if(arr[i]%2 != 0 && arr[i] != 0){ + multiplied = multiplied * arr[i]; + + } + + } + System.out.println("Произведението на всички нечетни числа различни от нула e: " + multiplied); + } + + private static int generate() { + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; + + } + +} From 0d3096a76506745612d2a5dcabfa9636bf2ac610 Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 18 Dec 2014 15:30:35 +0200 Subject: [PATCH 30/41] --- 1401417015 AngelFlag/project1_sra/build.xml | 73 + 1401417015 AngelFlag/project1_sra/manifest.mf | 3 + .../project1_sra/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../project1_sra/nbproject/project.properties | 73 + .../project1_sra/nbproject/project.xml | 15 + .../src/project1_sra/Project1_sra.java | 61 + 7 files changed, 1646 insertions(+) create mode 100644 1401417015 AngelFlag/project1_sra/build.xml create mode 100644 1401417015 AngelFlag/project1_sra/manifest.mf create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.properties create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.xml create mode 100644 1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java diff --git a/1401417015 AngelFlag/project1_sra/build.xml b/1401417015 AngelFlag/project1_sra/build.xml new file mode 100644 index 0000000..f42ead4 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project1_sra. + + + diff --git a/1401417015 AngelFlag/project1_sra/manifest.mf b/1401417015 AngelFlag/project1_sra/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml b/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml new file mode 100644 index 0000000..d09e2ba --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties b/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties new file mode 100644 index 0000000..aa1ae87 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=9d079792 +build.xml.script.CRC32=e0732309 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=9d079792 +nbproject/build-impl.xml.script.CRC32=583300d1 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.properties b/1401417015 AngelFlag/project1_sra/nbproject/project.properties new file mode 100644 index 0000000..b4abe45 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/project1_sra.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=project1_sra.Project1_sra +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.xml b/1401417015 AngelFlag/project1_sra/nbproject/project.xml new file mode 100644 index 0000000..4ad2928 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + project1_sra + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java new file mode 100644 index 0000000..551a769 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java @@ -0,0 +1,61 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project1_sra; +import java.util.Random; +/** + * + * @author THE NET + */ +public class Project1_sra { + + /** + * @param args the command line arguments + */ + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = generate(); + + public static void main(String[] args) { + + int[] arr = new int[7]; + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = ge + double br = 0; + double sum = 0; + + for (int i = 0; i < arr.length; i++ ) { + + arr[i] = generate(); + System.out.println(arr[i]); + + if(arr[i]%5 == 0){ + + sum = sum + arr[i]; + System.out.println("Няма остатък: " + arr[i]); + + br = br + 1; + } + } + System.out.println("Сумата на елементите е : " + sum + " и броят им е : " + br); + calc(sum, br); + + } + + private static int generate() { + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; +} + + public static void calc(double sum, double br){ + + double result = sum / br; + System.out.println("средно аритметично на елементите, които се делят на 5 без остатък е: " + result); + } +} From f885fcf584bf54082a514688b80b2484b5b8fbe3 Mon Sep 17 00:00:00 2001 From: THE NET Date: Thu, 18 Dec 2014 15:30:35 +0200 Subject: [PATCH 31/41] --- .gitignore | 9 +- .../Calculator!/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../Calculator!/nbproject/genfiles.properties | 8 + .../Calculator!/nbproject/project.properties | 73 + .../Calculator!/nbproject/project.xml | 15 + 1401417015 AngelFlag/MyCalculator/build.xml | 73 + 1401417015 AngelFlag/MyCalculator/manifest.mf | 3 + .../MyCalculator/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../MyCalculator/nbproject/project.properties | 73 + .../MyCalculator/nbproject/project.xml | 15 + .../src/MyCalculator/jCalculator.form | 294 ++++ .../src/MyCalculator/jCalculator.java | 397 +++++ .../alabala/src/alabala/Alabala.java | 21 + .../src/exam2_7menu/Exam2_7menu.java | 1 + 1401417015 AngelFlag/exam3_3/build.xml | 73 + 1401417015 AngelFlag/exam3_3/manifest.mf | 3 + .../exam3_3/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam3_3/nbproject/genfiles.properties | 8 + .../exam3_3/nbproject/project.properties | 73 + .../exam3_3/nbproject/project.xml | 15 + 1401417015 AngelFlag/exam4_5/build.xml | 73 + 1401417015 AngelFlag/exam4_5/manifest.mf | 3 + .../exam4_5/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../exam4_5/nbproject/genfiles.properties | 8 + .../exam4_5/nbproject/project.properties | 73 + .../exam4_5/nbproject/project.xml | 15 + .../exam4_5/src/exam4_5/Exam4_5.java | 39 + .../src/oop1_myworld/Athlete.java | 14 + .../src/oop1_myworld/Introduceable.java | 17 + .../src/oop1_myworld/Student.java | 51 + 1401417015 AngelFlag/project1_1.rar | Bin 0 -> 14780 bytes 1401417015 AngelFlag/project1_sra/build.xml | 73 + 1401417015 AngelFlag/project1_sra/manifest.mf | 3 + .../project1_sra/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../project1_sra/nbproject/project.properties | 73 + .../project1_sra/nbproject/project.xml | 15 + .../src/project1_sra/Project1_sra.java | 61 + .../project2_arrayS#@rT/build.xml | 73 + .../project2_arrayS#@rT/manifest.mf | 3 + .../nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../project2_arrayS#@rT/nbproject/project.xml | 15 + .../project2_arrays/rt/Project2_arraySRT.java | 156 ++ 1401417015 AngelFlag/project2_final/build.xml | 73 + .../project2_final/manifest.mf | 3 + .../project2_final/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../project2_final/nbproject/project.xml | 15 + .../src/project2_final/Project2_final.java | 69 + 1401417015 AngelFlag/projecteasygo/build.xml | 73 + .../projecteasygo/manifest.mf | 3 + .../projecteasygo/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../nbproject/project.properties | 73 + .../projecteasygo/nbproject/project.xml | 15 + .../src/projecteasygo/Projecteasygo.java | 38 + 1401417015 AngelFlag/test/build.xml | 73 + 1401417015 AngelFlag/test/manifest.mf | 3 + .../test/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../test/nbproject/genfiles.properties | 8 + .../test/nbproject/project.properties | 73 + .../test/nbproject/project.xml | 15 + 1401417015 AngelFlag/test/src/test/Test.java | 364 +++++ 1401417015 AngelFlag/tutorial/build.xml | 73 + 1401417015 AngelFlag/tutorial/manifest.mf | 3 + .../tutorial/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../tutorial/nbproject/genfiles.properties | 8 + .../tutorial/nbproject/project.properties | 73 + .../tutorial/nbproject/project.xml | 15 + .../tutorial/src/tutorial/Tutorial.java | 61 + 1401417015 AngelFlag/zad1/build.xml | 73 + 1401417015 AngelFlag/zad1/manifest.mf | 3 + .../zad1/nbproject/build-impl.xml | 1413 +++++++++++++++++ .../zad1/nbproject/genfiles.properties | 8 + .../zad1/nbproject/project.properties | 73 + .../zad1/nbproject/project.xml | 15 + 1401417015 AngelFlag/zad1/src/zad1/Zad1.java | 27 + .../zad1/src/zad1/random.java | 62 + 82 files changed, 19039 insertions(+), 1 deletion(-) create mode 100644 1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/Calculator!/nbproject/project.properties create mode 100644 1401417015 AngelFlag/Calculator!/nbproject/project.xml create mode 100644 1401417015 AngelFlag/MyCalculator/build.xml create mode 100644 1401417015 AngelFlag/MyCalculator/manifest.mf create mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/project.properties create mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/project.xml create mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form create mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java create mode 100644 1401417015 AngelFlag/alabala/src/alabala/Alabala.java create mode 100644 1401417015 AngelFlag/exam3_3/build.xml create mode 100644 1401417015 AngelFlag/exam3_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam3_3/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam3_3/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam4_5/build.xml create mode 100644 1401417015 AngelFlag/exam4_5/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/exam4_5/nbproject/project.properties create mode 100644 1401417015 AngelFlag/exam4_5/nbproject/project.xml create mode 100644 1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java create mode 100644 1401417015 AngelFlag/project1_1.rar create mode 100644 1401417015 AngelFlag/project1_sra/build.xml create mode 100644 1401417015 AngelFlag/project1_sra/manifest.mf create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.properties create mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.xml create mode 100644 1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/build.xml create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java create mode 100644 1401417015 AngelFlag/project2_final/build.xml create mode 100644 1401417015 AngelFlag/project2_final/manifest.mf create mode 100644 1401417015 AngelFlag/project2_final/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/project2_final/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/project2_final/nbproject/project.properties create mode 100644 1401417015 AngelFlag/project2_final/nbproject/project.xml create mode 100644 1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java create mode 100644 1401417015 AngelFlag/projecteasygo/build.xml create mode 100644 1401417015 AngelFlag/projecteasygo/manifest.mf create mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/project.properties create mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/project.xml create mode 100644 1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java create mode 100644 1401417015 AngelFlag/test/build.xml create mode 100644 1401417015 AngelFlag/test/manifest.mf create mode 100644 1401417015 AngelFlag/test/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/test/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/test/nbproject/project.properties create mode 100644 1401417015 AngelFlag/test/nbproject/project.xml create mode 100644 1401417015 AngelFlag/test/src/test/Test.java create mode 100644 1401417015 AngelFlag/tutorial/build.xml create mode 100644 1401417015 AngelFlag/tutorial/manifest.mf create mode 100644 1401417015 AngelFlag/tutorial/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/tutorial/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/tutorial/nbproject/project.properties create mode 100644 1401417015 AngelFlag/tutorial/nbproject/project.xml create mode 100644 1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java create mode 100644 1401417015 AngelFlag/zad1/build.xml create mode 100644 1401417015 AngelFlag/zad1/manifest.mf create mode 100644 1401417015 AngelFlag/zad1/nbproject/build-impl.xml create mode 100644 1401417015 AngelFlag/zad1/nbproject/genfiles.properties create mode 100644 1401417015 AngelFlag/zad1/nbproject/project.properties create mode 100644 1401417015 AngelFlag/zad1/nbproject/project.xml create mode 100644 1401417015 AngelFlag/zad1/src/zad1/Zad1.java create mode 100644 1401417015 AngelFlag/zad1/src/zad1/random.java diff --git a/.gitignore b/.gitignore index 3e1670f..294c738 100644 --- a/.gitignore +++ b/.gitignore @@ -92,4 +92,11 @@ /1401417015 AngelFlag/animals/nbproject/private/ /1401417015 AngelFlag/animals/build/ /1401417015 AngelFlag/oop1_MyWorld/nbproject/private/ -/1401417015 AngelFlag/oop1_MyWorld/build/ \ No newline at end of file +/1401417015 AngelFlag/oop1_MyWorld/build/ +/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/private/ +/1401417015 AngelFlag/alabala/nbproject/private/ +/1401417015 AngelFlag/alabala/build/ +/1401417015 AngelFlag/project2_arrayS#@rT/build/ +/1401417015 AngelFlag/project2_final/nbproject/private/ +/1401417015 AngelFlag/projecteasygo/nbproject/private/ +/1401417015 AngelFlag/projecteasygo/build/ \ No newline at end of file diff --git a/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml b/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml new file mode 100644 index 0000000..423e066 --- /dev/null +++ b/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties b/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties new file mode 100644 index 0000000..fa6c3b9 --- /dev/null +++ b/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=39ea1f5e +build.xml.script.CRC32=f7aaae06 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=39ea1f5e +nbproject/build-impl.xml.script.CRC32=e6890fbd +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Calculator!/nbproject/project.properties b/1401417015 AngelFlag/Calculator!/nbproject/project.properties new file mode 100644 index 0000000..75add7b --- /dev/null +++ b/1401417015 AngelFlag/Calculator!/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/Calculator_.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class= +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/Calculator!/nbproject/project.xml b/1401417015 AngelFlag/Calculator!/nbproject/project.xml new file mode 100644 index 0000000..6ed1f13 --- /dev/null +++ b/1401417015 AngelFlag/Calculator!/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + Calculator! + + + + + + + + + diff --git a/1401417015 AngelFlag/MyCalculator/build.xml b/1401417015 AngelFlag/MyCalculator/build.xml new file mode 100644 index 0000000..8ac28c5 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project MyCalculator. + + + diff --git a/1401417015 AngelFlag/MyCalculator/manifest.mf b/1401417015 AngelFlag/MyCalculator/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml b/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml new file mode 100644 index 0000000..a7dbdeb --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties b/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties new file mode 100644 index 0000000..af5fc64 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=2cfd1193 +build.xml.script.CRC32=b09b2716 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=2cfd1193 +nbproject/build-impl.xml.script.CRC32=e91239b2 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/project.properties b/1401417015 AngelFlag/MyCalculator/nbproject/project.properties new file mode 100644 index 0000000..117fef0 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/MyCalculator.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=MyCalculator.jCalculator +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/project.xml b/1401417015 AngelFlag/MyCalculator/nbproject/project.xml new file mode 100644 index 0000000..39dfed5 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + MyCalculator + + + + + + + + + diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form new file mode 100644 index 0000000..44affc1 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form @@ -0,0 +1,294 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java new file mode 100644 index 0000000..e681beb --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java @@ -0,0 +1,397 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package MyCalculator; + +/** + * + * @author THE NET + */ +public class jCalculator extends javax.swing.JFrame { + + private double total = 0; + + /** + * Creates new form jCalculator + */ + public jCalculator() { + initComponents(); + } + + /** + * This method is called from within the constructor to initialize the form. + * WARNING: Do NOT modify this code. The content of this method is always + * regenerated by the Form Editor. + */ + @SuppressWarnings("unchecked") + // //GEN-BEGIN:initComponents + private void initComponents() { + + jScrollPane1 = new javax.swing.JScrollPane(); + txtDisplay = new javax.swing.JTextArea(); + jPanel1 = new javax.swing.JPanel(); + Button1 = new javax.swing.JButton(); + Button2 = new javax.swing.JButton(); + Button3 = new javax.swing.JButton(); + Button4 = new javax.swing.JButton(); + Button5 = new javax.swing.JButton(); + Button6 = new javax.swing.JButton(); + Button7 = new javax.swing.JButton(); + Button8 = new javax.swing.JButton(); + Button9 = new javax.swing.JButton(); + Button10 = new javax.swing.JButton(); + jPanel2 = new javax.swing.JPanel(); + btnEqual = new javax.swing.JButton(); + btnPLUS = new javax.swing.JButton(); + btnMinus = new javax.swing.JButton(); + Clear = new javax.swing.JButton(); + + setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); + + txtDisplay.setColumns(20); + txtDisplay.setRows(5); + jScrollPane1.setViewportView(txtDisplay); + + Button1.setText("1"); + Button1.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button1ActionPerformed(evt); + } + }); + + Button2.setText("2"); + Button2.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button2ActionPerformed(evt); + } + }); + + Button3.setText("3"); + Button3.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button3ActionPerformed(evt); + } + }); + + Button4.setText("4"); + Button4.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button4ActionPerformed(evt); + } + }); + + Button5.setText("5"); + Button5.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button5ActionPerformed(evt); + } + }); + + Button6.setText("6"); + Button6.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button6ActionPerformed(evt); + } + }); + + Button7.setText("7"); + Button7.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button7ActionPerformed(evt); + } + }); + + Button8.setText("8"); + Button8.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button8ActionPerformed(evt); + } + }); + + Button9.setText("9"); + Button9.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button9ActionPerformed(evt); + } + }); + + Button10.setText("0"); + Button10.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button10ActionPerformed(evt); + } + }); + + btnEqual.setText("="); + btnEqual.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnEqualActionPerformed(evt); + } + }); + + btnPLUS.setText("+"); + btnPLUS.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnPLUSActionPerformed(evt); + } + }); + + btnMinus.setText("_"); + btnMinus.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnMinusActionPerformed(evt); + } + }); + + Clear.setFont(new java.awt.Font("Tahoma", 0, 10)); // NOI18N + Clear.setText("CL"); + Clear.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + ClearActionPerformed(evt); + } + }); + + javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); + jPanel2.setLayout(jPanel2Layout); + jPanel2Layout.setHorizontalGroup( + jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel2Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(btnMinus, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addGroup(jPanel2Layout.createSequentialGroup() + .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(btnEqual, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(btnPLUS, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addGap(0, 0, Short.MAX_VALUE)) + .addComponent(Clear, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + .addContainerGap()) + ); + jPanel2Layout.setVerticalGroup( + jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel2Layout.createSequentialGroup() + .addContainerGap() + .addComponent(btnEqual) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(btnPLUS) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(btnMinus) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(Clear) + .addGap(0, 19, Short.MAX_VALUE)) + ); + + javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); + jPanel1.setLayout(jPanel1Layout); + jPanel1Layout.setHorizontalGroup( + jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button1) + .addGap(18, 18, 18) + .addComponent(Button2) + .addGap(18, 18, 18) + .addComponent(Button3)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button4) + .addGap(18, 18, 18) + .addComponent(Button5) + .addGap(18, 18, 18) + .addComponent(Button6)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button7) + .addGap(18, 18, 18) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(Button10) + .addComponent(Button8)) + .addGap(18, 18, 18) + .addComponent(Button9))) + .addGap(12, 12, 12) + .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + ); + jPanel1Layout.setVerticalGroup( + jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button1) + .addComponent(Button2) + .addComponent(Button3)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button4) + .addComponent(Button5) + .addComponent(Button6)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button7) + .addComponent(Button8) + .addComponent(Button9)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(Button10) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addGap(0, 11, Short.MAX_VALUE)) + ); + + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); + getContentPane().setLayout(layout); + layout.setHorizontalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap() + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 256, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + ); + layout.setVerticalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) + ); + + pack(); + }// //GEN-END:initComponents + + private void Button2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button2ActionPerformed + String display = txtDisplay.getText() + "2"; + txtDisplay.setText(display); +// TODO add your handling code here: + }//GEN-LAST:event_Button2ActionPerformed + + private void btnMinusActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnMinusActionPerformed + // TODO add your handling code here: + }//GEN-LAST:event_btnMinusActionPerformed + + private void Button1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button1ActionPerformed + // TODO add your handling code here: + String display = txtDisplay.getText() + "1"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button1ActionPerformed + + private void Button3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button3ActionPerformed + String display = txtDisplay.getText() + "3"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button3ActionPerformed + + private void Button4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button4ActionPerformed + String display = txtDisplay.getText() + "4"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button4ActionPerformed + + private void Button7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button7ActionPerformed + String display = txtDisplay.getText() + "7"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button7ActionPerformed + + private void Button5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button5ActionPerformed + String display = txtDisplay.getText() + "5"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button5ActionPerformed + + private void Button9ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button9ActionPerformed + String display = txtDisplay.getText() + "7"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button9ActionPerformed + + private void Button8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button8ActionPerformed + String display = txtDisplay.getText() + "8"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button8ActionPerformed + + private void Button6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button6ActionPerformed + String display = txtDisplay.getText() + "6"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button6ActionPerformed + + private void Button10ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button10ActionPerformed + // TODO add your handling code here: + }//GEN-LAST:event_Button10ActionPerformed + + private void btnPLUSActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnPLUSActionPerformed + total += Double.parseDouble(txtDisplay.getText()); + txtDisplay.setText("");// TODO add your handling code here: + }//GEN-LAST:event_btnPLUSActionPerformed + + private void ClearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ClearActionPerformed + total = 0; + txtDisplay.setText(); + // TODO add your handling code here: + }//GEN-LAST:event_ClearActionPerformed + + private void btnEqualActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnEqualActionPerformed + + double current = Double.parseDouble(txtDisplay.getText()); + total += current; + txtDisplay.setText(Double.toString(total)); + + txtDisplay.setText(Double.toString(total) + current); +// TODO add your handling code here: + }//GEN-LAST:event_btnEqualActionPerformed + + /** + * @param args the command line arguments + */ + public static void main(String args[]) { + /* Set the Nimbus look and feel */ + // + /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. + * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html + */ + try { + for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { + if ("Nimbus".equals(info.getName())) { + javax.swing.UIManager.setLookAndFeel(info.getClassName()); + break; + } + } + } catch (ClassNotFoundException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (InstantiationException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (IllegalAccessException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (javax.swing.UnsupportedLookAndFeelException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } + // + + /* Create and display the form */ + java.awt.EventQueue.invokeLater(new Runnable() { + public void run() { + new jCalculator().setVisible(true); + } + }); + } + + // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JButton Button1; + private javax.swing.JButton Button10; + private javax.swing.JButton Button2; + private javax.swing.JButton Button3; + private javax.swing.JButton Button4; + private javax.swing.JButton Button5; + private javax.swing.JButton Button6; + private javax.swing.JButton Button7; + private javax.swing.JButton Button8; + private javax.swing.JButton Button9; + private javax.swing.JButton Clear; + private javax.swing.JButton btnEqual; + private javax.swing.JButton btnMinus; + private javax.swing.JButton btnPLUS; + private javax.swing.JPanel jPanel1; + private javax.swing.JPanel jPanel2; + private javax.swing.JScrollPane jScrollPane1; + private javax.swing.JTextArea txtDisplay; + // End of variables declaration//GEN-END:variables +} diff --git a/1401417015 AngelFlag/alabala/src/alabala/Alabala.java b/1401417015 AngelFlag/alabala/src/alabala/Alabala.java new file mode 100644 index 0000000..3b6215d --- /dev/null +++ b/1401417015 AngelFlag/alabala/src/alabala/Alabala.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package alabala; + +/** + * + * @author THE NET + */ +public class Alabala { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java index f04552d..16ffdae 100644 --- a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java +++ b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java @@ -15,6 +15,7 @@ public class Exam2_7menu { * @param args the command line arguments */ public static void main(String[] args) { + System.out.println("Меню"); // Извеждане на менюто в конзолата System.out.println(" 1. Теглене на сума"); System.out.println(" 2. Промяна на PIN"); diff --git a/1401417015 AngelFlag/exam3_3/build.xml b/1401417015 AngelFlag/exam3_3/build.xml new file mode 100644 index 0000000..d41aaaf --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_3. + + + diff --git a/1401417015 AngelFlag/exam3_3/manifest.mf b/1401417015 AngelFlag/exam3_3/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml new file mode 100644 index 0000000..a0d9619 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties new file mode 100644 index 0000000..0ea2f02 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=699d59e8 +build.xml.script.CRC32=3a32f74e +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=699d59e8 +nbproject/build-impl.xml.script.CRC32=3039a516 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_3/nbproject/project.properties b/1401417015 AngelFlag/exam3_3/nbproject/project.properties new file mode 100644 index 0000000..fbc1dab --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam3_3.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam3_3.Exam3_3 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_3/nbproject/project.xml b/1401417015 AngelFlag/exam3_3/nbproject/project.xml new file mode 100644 index 0000000..5e31528 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam3_3 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_5/build.xml b/1401417015 AngelFlag/exam4_5/build.xml new file mode 100644 index 0000000..722187c --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam4_5. + + + diff --git a/1401417015 AngelFlag/exam4_5/manifest.mf b/1401417015 AngelFlag/exam4_5/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml new file mode 100644 index 0000000..e6cf92c --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties new file mode 100644 index 0000000..09aca61 --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=aec5ad88 +build.xml.script.CRC32=897ea76c +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=aec5ad88 +nbproject/build-impl.xml.script.CRC32=669ce3ec +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_5/nbproject/project.properties b/1401417015 AngelFlag/exam4_5/nbproject/project.properties new file mode 100644 index 0000000..e603111 --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/exam4_5.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=exam4_5.Exam4_5 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_5/nbproject/project.xml b/1401417015 AngelFlag/exam4_5/nbproject/project.xml new file mode 100644 index 0000000..8bf669f --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + exam4_5 + + + + + + + + + diff --git a/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java b/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java new file mode 100644 index 0000000..6771aa8 --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java @@ -0,0 +1,39 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_5; + +/** + * + * @author THE NET + */ +public class Exam4_5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println(факториелЦикъл(4)); + System.out.println(факториелРекурсия(4)); + } + + public static long факториелЦикъл(int num) { + long result = 1; + + for (int i = 2; i <= num; i++) + result *= i; + + return result; + } + + public static long факториелРекурсия(int num) { + if(num<2) // Условие за край - прекъсване на рекурсията + return 1; + + return num*факториелРекурсия(num-1); + + } + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java new file mode 100644 index 0000000..5036b3b --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Athlete { + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java new file mode 100644 index 0000000..9d3f576 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public interface Introduceable { + //public int age = 40; + //public static final double Pi = 3.14; + public void introduceYourself(); + //void mandatadory(int par1, String par2); +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java new file mode 100644 index 0000000..45e1d98 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java @@ -0,0 +1,51 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Student extends Person{ + + private String fNumber; + + public String getfNumber() { + return fNumber; + } + + public void setfNumber(String fNumber) { + this.fNumber = fNumber; + } + + public Student(String fNumber, String name, int age) { + super(name, age); + this.fNumber = fNumber; + } + + public Student() { + this("Test",45); + fNumber = "No facult number"; + } + + public Student(String name,int age) { + super(name,age); + + } + @Override + public void introduceYourself(){ + super.introduceYourself(); + System.out.println("I am a student. My name is: " + name + " and My fNumber is = " + fNumber); + } + + @Override + public String toString(){ + return "Student{"+ "fNumber=" + fNumber + '}'; + } +} + + + diff --git a/1401417015 AngelFlag/project1_1.rar b/1401417015 AngelFlag/project1_1.rar new file mode 100644 index 0000000000000000000000000000000000000000..77023497452e3d315641231a8b0413cce931408f GIT binary patch literal 14780 zcma*O18`&ww>8|cZQItwwr!(h+qP}nm?RTVG_j3|&51QhCV!sidB1z_`_}*6|3B5I z`kd}wtJdCi_O4ykYpWPLli)%DW)fWh00h84hscyGaiZqGZU6w#zpn6|lf?;`SpmeK z*N)B()<9EN7DE<26E`bcGd)vVV;2{oiyosr(A5NJZ0}-d?B?oVXY6WaYWVjr0F8~F zSdDm}v|4|W{eAooTDJecv~G@O#;!m^XP}FNo3km<2c4WH&*R7ISnz`i66B=4*)6Clx6q`|G>5)|=Hera7>UjS;xb8u=s5 zA0pX;hqK4QXSr?KWxwm>=(kthU3S5TjUmGCE4vAp!)NymutM)F9i*JFS^Y`}kXNJQ zipASLWDUNY4X@p}jiKZw%Otd;wa+}j z=a>NW_TNl*3R+?pq^cLiNY~&h6DP6t1DWKq(Fdv3u{Y>@?3EQ_Nth&wi)pT)dJJ;K z2h57fU)Esj(6F|oEwBe*sH~;-cnxLTXv6n1e(pqS*c!Yz-@dmefXPvsW&NVYLH?NHxJJlNvk4=xSfb9=UK3Y}9 zqpd4NvsLb~gAG)0wbqM*L<_SYFL%{IdhY7aa%T?MKP!nV9TOj-J<3^(L9KcZx5J;o znZ-&@$_D5rq-}x-n8QcS3J>?W_lo%NRr!1^xF*1WQ{iegE;E^t=PpI251w?f$2Z!) z8h#JgnWHo<@8v|+F<~2O^ldpV)kP zjkFuex@K6=d0a$M`{lpoyNgHy6FYaMc1kZ%=Aet<9Jw6Qy6P;>;EDy}OMeZPORz%| z;&qay8*PzDnw3~6)M|80ZG0K}+}J^UgMn+es@l9&1fj5-LfQ*T($B~FJ^8B}T8JSN zS*p4hlTFA;S8Jwwe9_?3wa)r5jYGzpOnmTVuzX^d>QV$VcNGErrDq*>H>?Tm@qHj@ z)Mxc^12#S@j|lOz`nZz4M_`@)sy_7p*Xm>Rw6g^?G7x~kgUG|r&P)kwZUy-h(IF#j zg0%d4nJbzKG5ZGMF%V6@w(DD|kDa4j-V_#PvqIc^B^K4=-Hb{FJ3POfi|W&hnM{8D zoR0%<>imI zpqy6RA5s@f5ACAV;{;bXR8#qE@_7^q4}_~Sx!RN2hADZRli5E3CF3$2)X=FDAcd#O z=qb;z#c1YW+==xHdDD^KB|!`cPEU~ixX4^SXcZcbb_Dv`<={rl^d2zd=!PQM z#}lHqGo{Wn_90d=0)}0&k9iote?J70GtS_zYTgGP!Un9iYWRS^n{=3_61EDfR8VCd z`OUYOEO2}?U0q0>{sRo@dQv1^eV?v49O!2}JIYMM>UT3n+}0YZBOt-*%jfLbdfy;E zu1F=iZE7ur?u;}xQ*U|wX*R4bfM{8;>fuc{4YMR$&Tiu{QCzCX-Y;+oA@0oRqK5Qn zK=x63TUEq1D|R-dPAC}?nz)8R)`@i5Z_%Lmx)9W~m)bm#3+9TC^CvVkN%eO;HF>fNX~tM9x?hmUA?(F&r#AjlG9fa6VRk~OoR}^EwIZ2 z*_jUKP!GXSVP;)y`<^&rd`a^ysHrWGyvS3*zW+`M$#uQTzrV>~cM9ndJ2XlFF=KVI0Mw z4WX1jpcbz75JBI*WyjBk-)KLFg*8+=-)K;dyFdEGZ~iJ3FzqVSK?WHwPohc zGeTY~Mf=XuE9UZq@fISVCT=`jy*FuZt2a5I7Ky+SetatgN-4Bw(7(vWm&Ax}oirUD z5dhJ7Jt(eC=2A$^k{eN!M?2o1R@+lKI5rKxXer_MLwiEMM;>{yKAoy|c5^Is6NK|o zqFV8Ycp$`>q0ZG{9`cn?mL?{#(oUS$En?Hn?l_K!S`C z{#xY~Let*7>_8pu?JNU@^oxU7H8H1ERC@LnJB9NDr+eND1iC`@Kj|dJ1B=wpdNYjg zs%?8JE#!^Y=f^W|E?}tNpOwdUe@qb4Iub6f@~T;7H#lh@lOx*^hD0ggULJt-@ukh0 z%R?IH>$>~zJ4ZrMBgKUUVLbu;T!RMdcBeA-seeOwMKz@x0XJ&JD z8K<%a*2%A!V)f)-(sI`Onlvh}Y|@ZeVK_>6HvUlj1cxVd9&D>bbI2!c0KwpDpjH=m zQ?$dT*NdxFLFsH3Sv+(U$YgRT#ropnb@Eb6K1oaWb33wPtta6WWBIwuesYv_R9x$_ zWx3PcOp2bLPAY+cm2~>1uL&AWmc^@kr!yz@#Ud6>1pNwM$i!$fOXSM&t0=EmxCvHk z_`oTVe%=XU;`RFALkOvw%fRBb{?GSEiqO@rt`Xx^uaA=j`_HDx3sC-AkK`G4IrXaJpEtQ_olh*=n!5n#0#L>1-b#TC?e zh~={J=8o7u)tZZ$GO@PG4W@bP$;{O`DjBRbbh)q6Ue@$lyun4e}KR)$H0ocg^ zfISWn0O%x|Y(321O`7aK_1K&IYb^R_wqvlebF}@tXJ5<1#36$sPfj7I4w3wPTCaQN zUQ+eDTtTJf%THNw=I)=IOwO&{S7nvS>AF%Yoo8sxOlCyY`0_;Kw{2B^`=xz#PwGgB zF2tTwJ#!wPUaQGuCRl(Sc{qMJYE`g7UxucMHsrMw^Y!r}M z;r)Bz<9qL&v7AjY5C-zm?U3+rJl<#ft#$>Q1kT%^9G>OMlC85AQ8YD+)=nLt?G&2T>O94y= zvK^pH=e_TiN(Uixz(0J)c_0_9BmyYThktNM?t}~C36bHl<$q1UC$b0;4Ga4DyT(bLlPG*DUvVb_(uA`Q zjGkp|(4zV)jd<|5?d7tD-|c?mi&I&>HrHj>G^n8wB@sxk4e3S~rQRTtUI!LLEob>L z(;)Fqt3PA6b;GOOYF9w~gF|g7oeK@)RtPmk`U_y(%UjEXLJx55ja#|Ul3~_E-szRslJbb|5F82YF6$lZkrdoIN#?HodNi>&i8Z#> zYzfk-d0>3gQ0zJ0dbqNG@#wwtsJ{2wdGO*BeP0{^<6}D?gCb_du7$m=)Mkzdpm-;6 zv5bDGae}a&T@3Q`f)BLu1ZMLderIQgqRRi+@N`aIh9-j(NJM6bW(G&Y%zg$bdhLFX8NWNSU;+LZ|PeS(kV+$g4)W+mq1FjBctcEEgcfvM` zFfQ!|={?Q9VNBF*4WQ&Wewaz7FAQKHMm~r<>Fu3_gpm7ngSW1~@kFCelEiNA(T0#8vLFC*Ph zlb-C7=t4{TyrE|xS(c_Ke!jgcpi3f#C?dy)Xh~wuj_=jS$)7}yrf*OA11|%0G;cLM z7y!E(!Hd|2u$zE9`l?fKBLUJz2EOPdEC?tjLT3R)oc2Phb9zzI`yyRt$L!O)nZWQ{ zCm@s1F2wUuwD`{X3+<$4*97x{gY5+k%vsbF;+0r-VpajTli;*rA}J7+*om;tZ(D8D;8J*B}%+-wqg(B6)odKFB%~%z2gE*%}KIgcD7X2rcup< zAa{+k+f*_@k&9a2PQ|hAb=i5g367x-4Llfsh;&oVf^&V3f?^xoD`SoQX{ZMwC9rE{ zP7IkPg7a>#p|Rfr-ZC+bjZ%JiCPyS;h@ka#T>LRLle3XLC`;IZA*e;~?!B&j{<*{H z`?{{0P9xqf6PO8u`g3?P^~|xY!Bf25eReSt86K4vsO_yADXe9$XEv znKufACZ>NUEpFds*Sq_}2B4BWRd0Ueycgd^k-T|i_fKK*fq&7_*>xlKO@K~ae;Tw^ z8?+i(Gqzu~!K~3^Ul-;V2yC@H5jD&)S3GIQkP*84?JgvwnLFQY$;Uq*ymj@ACdPNZ zABSHkh^Im6JUkJCyj**n1a&99s%M7YaRav_Ahz@a<8vHCbb75uw}evKBz7{}^x?g{ zbc$YLrwO~5%|mtsve|XLbw%}j2aRLMMO3BBd1M;wX_cr2KpMQvK)(j_^m8l2$ztCz z?oCe8jHvD{V_N!vd2Ga#^n%b4+kg!SdDLPh)PX;}Vu+)Tks4%0%l{0I#N0^~2+>Nf z5>mf)jbsZ6t9PIz7hA{$aU|KS)`|Rm%>keG=DHt}y$^%^o3w_e+VxV~^?qJLXb5O) z{$^p8-|LZ1mpYEZL;)SA4v!0qjQb}tdYNOieo$U-{a4cwXP3^e>Gh!UgXEJM>6O%T5&+AOr3s{5z9uZ_FXzof(!M0A_OTA5^M=SJ_7QKx(1{?T$u4R zT-@R`Hy&5r$Y|R{=-`xSXAB8N+!*Omf`PAYAoZ^coI5|~gbS##29QD#fegl?Vu}v_ z-*9)2=gZ^h$Gr%h%{s3y+RI_HTrv>|k-UMQ7qIH;9J)B8*$LYlURok31;O`h3y=s-WNQ z&DqI7A^K}3A+PalKnsaM^#{BbNcn1=Uftnn_cgY$z#~sq`$y!Wgk-+ay(;`LtJ9BJ z#FWoxyLZ+>?AjVQ4NA1MT!0!=iA@51*YBVP4nY$o7X7FR@d!uFn$cH_ZsMic>SeCU znfk>bHf!R9Ip}BOFdN)LJlqN$W^-*K)C+BgEd8tB87>)2;l(_nlYE>-VT>1Pp+85R zA~ZMhm56lZAFX(QLajMUFxxZ<;VOOG zT^DDDLkC_WBU_lwC+Hvu=iBE)^H6FEfiwf!`UgvA^RU0U^2Q9xg?v*-Mo%k}z*$W9 z163I0>+84VoyH1{a_}RY?@6K(i&RO>bVY~6-4j6w_I}I_VcF`}u1^92RHz?Pk4HCp ztbTpaAI{7qdaxSshGWUrqCbE^&Rz z(!!Fl1UWne=Og5+(4r%PfOG`V%VU^i(FzJFuTVQfGU9o>eCkoLhQwblgfVQQB+D z2r-&qwHR1@dQ^&=^{R*F=^)wbzk;nMH+jPNY+|HHtSGwo@)NiZt<9BGmw*};j0d{u z9p8?V>t#Qw9-f8fBnPjsqSBl$M2?yNt=;+_HjqEj7%1x|^&7ekMgA(~w?WP+9MT@B;X9Z2JeaPK zpfoj{TRy8Vx1C!{ol9|0EMPT^K!9NShC>J0+0P;&0@wsxU$1qG;8&HLhW5U_cqFyZ zx?V-hKbu4);ccw%em*icL8l6BZf+>?v2tO@I)}Os^1mKKquv3-!%u-}A^tH-s&^hO zAi`G4-hKqF#$+(2VyrTY-U*{*T8rocMNTu^!)~br!|lqhR&HP=ub0(`E;7u<)DMLn zu;L{pbpe33%nj>;a>a0#aB5LE7<`x-rgS2%gA@0_kKpfX;@$HjqE_{n?YM`#2PUR+ zXgyP}`=TZrQ9PdAi(WDm%#0H(!OVw=D*I8zYMlWxnnBS$R{!ks_WZ#$!>qQ+ zqpSr;98;d#oe{mz4O$V}(EPSzC9Nn6JB@9`y4ff#$r)YSapX1Js7Zq+Zfuq%Oh8hD zOb+PG4L^99Ea_b>yK9*l(=V5yz2+F=eh;oa0OD6fd%{linWeN2*M24ZFx5_wthg?N zr6D@-E(>g-G1FMQ@TtIB9u8UqTodY{unt4&FwZ`RfD3hxS@X4a@Xsn`TV$`bhK zqH$FD6?X++;Yi7JynG;Rpm`6-EACU3__!@gNPPv3<_brq(#lH9y5CQxybnA$rv;Ns zf|*Mp9sKQvcXLE`OAleqW}ZBc!o!R|S-(Wc#4M7e&m(STbnamu#jqCM0tSJI9tQ3R zl2R+H0BX{0Ri`$**td|U4#JYyjg#P#%20t%d$2o*zNDmF9hqz!VgU zdjIKaC?o2R27P)%%Yf-)M>ZZ?hHGW&Yo2=Cwab0$^a;Bk1 zXG>XY(PmdombN5)utQkQqslDe>S6rm@}SlKaHBCKf26~5Mx=`#@w}x&mA71F6RUSc zXt?b9eZ)+^Qm`BqO4FA;@8b*Y2@b zj(JxD0A%7`5EoSMsOHsUenWtsa>vaNOT6X{-}4be?3J^nki53 zUjk+kG-R+e5omN9s@WWWSSkBB^maOu8j9{5|3URp&|A;b{r2{J+w*6{>U3<@O`_)u z7l-Y@v>k9d&ErK#;lR=?dFnNNIdXSjeKWtT$eM*PYY9oOUMK+nRh(uI9qwlCB?720 zq58~WS{^yxer5*F){A02z?e9g1j0d(F%fvL%_G;H} zRIhG{$c(&)R=b+!c8#WV_bgP>cTuC`bBoVwxI>`mjVpwp)G&B!U{vbT|9%r$Ze(F? zo5MtJt}N+!1z1|j!cxDPM7J9%YqQEfnvnP%To#f+SY_?AI8CL!8I#DLc38;Th0wQm z!TPE$=f{)O^*ly7wu1cykmievpB5{jz4?Y;g@JKxgJ2_4&BU)NP12~ui%XdS(Fu8M zXQ_)ve1dM+e?{W81{h&EtzEX@e7hpiG~MF9J&C}z2x#qpxmi>Kb_wF3%rD^sV+5S9 z=Xu`}_=Q0IG>mzK)Q3#Kl_+&JnFf@?qmd-Nb zki+zKsFuWtP|j0NrY?BV@D~+v(%r7D>Bx{GI70*@$w+ zh#)2Z5ECLVa5Gn@p0Rjlpi#9ex1E@wL?m(U_WUQ`sIku}5fv?7)BG1SdQRJZ-g^AK z3T1L1S5PDf)c|>~OlMjl>`Hu(UTdZ{JjykP&gq&pT?=~;a&f=w2Hwv8@REqL6cF%w z94_6aG34e?2Uk&2%i{pyX;o>U81Ktw=v2g&+9$~-!$GOwB2$~453Mo~Ap#&r>sVP< zo*rz~U6lTTrAB8URGVZFzcgj;IQdlBc6o+>(_!YFfGFtD!w@>kgDy!E`Z&WXo{esg zzvp)%U4G{$-!#u&g2{jsOk zefT-yME*~(NhlNh-t5A&lzP3LRdCTfiu8D|9+Ylf{OOkx4a6MlhxAK1+@B+n*Di1E zyS~S)qX$#Jlahj#*JH*B2w;(&nB6?dCV89u}NXI(u z60%mU5@q~rbk5XA2?>J!`hZ%P z6pG`y4tgKk7skpR7UlHa7+#=QATV5tL_A3ZW)yE}I2~o#z{3WKx3CpF&+C4VXLLng zBU7@@Ss1NPK0yW%^@MmWk3=yB1WCHEp~GzGTz4Oq%x6?=%sIoBh+a`fy27j-fTtVC z$e%W1-IAW?htP}I%sxj;8Dr2fM%Ur2KZ}@c$;x=b$6_}1I;ZDxo*dVSB36__tAiVL zN?d$T#ZQh+PIY*=ANJ%u-ynFFpx5$k_*u4J=&oN1$!dp@aqg%7tnd0Q*^cz4_n_pM z=~1P7R<-?6T0^I;^upSqdUo4uZIp&)an)RL2A>%bR?qkzElHEY52-Ux4hGD!G$+Jp zxj5bHXvS)83|Q9^fkdOUbzLm6^fBE1qFB;U0q>YP@A6G=0*Vt?N#hL>jk{J^qC6Zy zF)CDf#~-_zGGP)c+6mR^6oO&AZitt~)r1>9-yCA*j_$9#6o0MBjM4V|#Ad)$Rx@!k zAM7mb9*E%W@IwdPpMA&xz{xPiu+Z?%Xs~9`nZvz3XgD;aH$eG>9)%jMI;9b$8~qSW zAv0>!mXA7hrJL=j?!NG89(m9}?~J!r9h$P$Tb=g53_IwivL)75rH6p)PpGhINZvoy z7KYpxQMQ16G=0bc-OI~nwY)wtNNs{Q84M*RWdnG3;F7Y_+U9Gi5TPVLYZQZD(^3I9+w$nj zBe?i7tb8bD;O@hDm5h|rvOdUM@THU&PzcSm3Y9$d8{Q8qn9JLx5%GU$=@wXJL@JJ$E zht#>L2gdWlyaD-n>55ob(TUX`Qjv-iONsQg@_ypnJVEyfTyX{yvgKt9#Kf!=hKO@! zGc{aQB%duoVj{Q*DO+)($omXk_9%)X^t60b6SqUPQ)s9MP<5ZGyPm`JG{zeP*Vetx z@*aIBVj4afjF&*2VUU9Ot3#;Gmn$z{pRIuY(?B~qz~KvmoH*JvIAkCVJnRVr{?n+I z*zbIAE-NBRcW(9I0>^3c=(4%(cm?s%=3hUt3Q4utqApJA?Y6abT{}!%hs~Nl2!N`< z1FH6Y4x=xnO*tUZQ7GEmDGTJmYLoMJ@xo!UEcYrfC6MJWt(x(QjI4ReI z=m0E7MEPsie)Hv3{#Q|G4({w6BfC2YBqJY=pv6x$N`WM(ZB9FQAgZL7?Tv?N zGSgkG4oW{}lt$BS?l1<0Gc!e+Z+uqJ;>0Xv^NHyStHzv)8YKGua?Fa7@nfy7!IWf z#7APJDz~OQV`o0fnKmWM8%-|o z=wx6(#rPg%y$-)rQn4nBP;@DjI!{I^RY!Xo)nVnVG-PmoDk(fiVYN49CMceWZ0@q>5Y ze5R?(>6xN4xDcJ$H2Jp>xEi6-b{(!60q;s|&Q?_hMbxVLn{N-_cp0~3IO&^^e>T6u zDfZ(py2D3nR@`yIQQ>}lyBzRxly1Pr@V0}@x;d8=PGsYaKeu7WuE_j0t53qt+uy(~ z?yJtzN#)#XgS;Ezje@&vQ={5eC_*Vp+qOOX`GEf+3i;`2kV8sC98p28=!jyAJg{yC zb2qVuv+a0UgB%FtMk#ubbvNrgvtMyg!Ri5dWOdQYd^evP30T^Jf^vm}@lCE1 zgAen~B>YQrUqdq1P*_nUS@)?mnZo&+FX6bxkyXWIeXK6;>A|CudX$8{R7C-IRV$B$ zLDZ5!yXPTNR5y?L8t3?pDo^m!VYMPvnSvq|jjG1jHX7#yhC$MwMXkYTvz8@X&2^*ailOX{s<(1RB%0w3|Il3sm9j3ef*)<_h%(BZ>^l-=Y7dt(gW`+16E(T2h zH4<{NCrIR;){&_j_s!au0BEuc{t>RWni3NyMTae3ACo5jy*FwM0&S5Pw#JkE%+#*U z^9C4qMZr`2#8%%tD6Jqn%O>^Qc9DhZ%vGLjZD2)eCBqk49-yZvCIT;sC@H)S!CUyb zAK`KFwDJ3M8w%-_c%mw~EG`B0gSu_UPd|xN*Ve#uqSW--=|u>>O3z|T`THClJ(aEc zw0e81Rh`1c(i^xKa^};@I8heeDhl!iIguqCDg9^yGzJd1Q1DZo;pkC8g6##5k&_!< zc85|`1oLc>?Jtq}t&a5rls+$=2Cbvf>#pC&$Z2XCn&JG}UuXTx9*x*R&zC6Y`7?z9 zkFAf%;bqTwQNBL|D7WYC-a)79a-Of}E>TPGiClv0{LxiY1tpNYLf$pr60?bKLj+ z;_Z`5K|2Zi!Pjar6tS9^#q48vQp>eu`|Zg0y9;EXFPj1Is5?;T1n3ZYl^2<2QjzC3 zV*=1Pvgbv*RkNP1h-KWCpbc(x(;u3Q1#5Jd`yw)jvNj&tbX!a~9JK&KKAW%I%n(DO zd$d^hs-nx>q(MMrVPo@6WA%-h%hnyn`k=V@Rf0}+oSkTlW-VXWr;M26lDyCQcRe#N z*_L&CId}4qkWYQ#K+|<$GA$7t)RW(Gf_W2D!`RuwlKTfg$qk`fBIH_6_|j-enl56V zn}hUvS6b0)Q>#~WIsN)~OgoY0(z5hlJl;7MvT=ASXIEa+-m6m!*9M9;>dQiP4RZ4F zadFzR?wUYy#bt0^WDnMSCJhS1Ml^a@Johv$Y!QZm0Zik`;S3&=yA}Iy3QK#sYJx!Q zU;KB9X!NW-*gq5qtP!O-w9htgugEy+$Zfn zRvjdTZ6D-4`F~*WKCKx0MPH1r|EO8|)>dvawaDj}@o@N)iIAryBcb?iIkCXd+NMN~ zUCw&fNg&H$;PB*u#fiBAvDKchXFb)oK5%@vGeOKxwzPeqWdgLA=-JIxOnhLCN?)*!Z62<*E0~h9Lwwrnn4!J|Zr690|ep2sd zDmHbL3Yt&s&EGQq%ts=)JyhwoqmssS6?p(zj8`j;6o#Rs0z@_D?%y|vTH`Ow$0MSU ze+WozQl6FS^Q4~*R-U?*4h*GSeP!ISVe;zgC=Zylf75BxZ}qI&VqVx(X{!^RzB*B^ zL{@4ZrACh_6Xm2#ucS0we$T&3XPE4FyTzSuO}itSP>%aB$sowjiqo_fJvW7=v}r`E zJWb?w$k46*Mkqtd0dvJlNY~7_0ORr!#SVk}D~n@p5g7q_LsD|W)c3B&^7cTI&G`<* zbxJ70fjMnr>N#Jzs@3AjPoRJ)McNE*wuw?Nl~2W1G8MCn&%v_W8B4xOR0W#=HtJ#l z+-Eh57k^xRHRDwesBV|X^3}uUTVto19{CHHim&sHmv7GZfSHB(3lDO0Mh*}Ma%-+U zx@1lza2=~qJ5F-<+zGjZ1SurvgM<;fODghU78V6*c*pgbWN~Z<`Gcfo5KU)k@>D@* zY15p}Tj}bk&7d)={5tFMN!`$S?POME-g>OkTc|teQ?G^)^a9%|pCRI&!)FTAj!o!C zzUnysQO7~-R|DsLz2D^tSQ^x<0ZhkmMjhd6>zI}~PL+2rJaYtz4c0x>kX$#?G64!$ z1m(vXz`X?M)~--YncS)mno`;R5;0{4;S897w9cA%vhCZfJ+Kj@=T^=(4FzNA)st&N zx$NwDhxMcF82mu7QjkA-JV9&bDRpwlE}J{Se7D7ZX`(%%(|U+yCH?5}0?r*}_WsVv zH(VNUtYzKKS4NNMS06%me?Gl8@&Ggt0O05635uGEp!SbJlKTJdy|Dn=n_JleT^K*j zIF3MPSF69g&gX#ugeXohyL{RiJuQ~^4Bgv_P8QjOt9Bz2 zV$NS!H|48eNO3F{@E!QuG@#LE$udokBBXan@4GEKCSRh-e+gX`r-mL1Lq2(HOGyXf z^U7?BcrO%-cFie8H+| z5|XJv(f(?5{q?%?V%%7A&`51Vfh3kUHs3oLS(ivc1q;#ELAPh|kXmssTRz>j2lkyjHL3g#Q2Jm+AkW zUq@#v_fIFe-oM`eXPU3`YGq)QP+<5|5vXRjkh)=~R_}#_ULYyKwN~wPRY6?nXCit@ zp{a|K`6RkEDT_<*1)h*Pw6j@>RfI!|M3&lne!IXJ*(l#|fcN#E;Shfv--fiW_WG{O zp%)o@h#9|F=_2B^9&Bqyp z-@^FYiT`i%r%7aCf|O<_-?1@#P7I-hnbhc36*`5sqA~kgC|c-Jsg;6#YIIjPZ^>In z#|1sg2q!q|WLX?`&o}E8qSk*K)J|KRy0Ca|naqq24do8*2lY*!90#RKQ%I}Af8}O5 z^c)pqwQ!urVwdn+%y;pAH&C*majn>ut8fSX5zowP9edCW+roPcCz>P@dK1Rb>83U0 z>5%rN5-mSNv$@>i{;K&Y+tb9bW0fVoEDS^EceAm@+NAbZ%^3<)Yn4WW$W}ZppS3>?$5lD&%A*|Fvo z#x7eHd7}rOJW?y?bi{1(mFO^nth$U&%Uf5&dJx`4Z*bPtwgRH|6gEAT3*Mc8f%d|LXX&(*&d z{OJZqnvjx*OR;Tn1x`~>WB5P@+=o2~lW4ET0w@xDiXtu3Qa}IK;Td?44ZP@vqY%%> zP;Wt?;F1)EOAS*Xkl3<%he@+pbU1m_9wpg1`BJquW$IDToHunVw9|FlP2vf4p-{Y) z+T7KIz)Ua#KE!ZOy2*v<(e^WazSmpIT;uX4+mU?+h91N!q$zS)MZ3x-H!Y9q+5&sZ zigttKIH#;08?O~+a1EOrj{&k<=!!T0T&a{qLSg&b6vOas(WvbkCoFN*sIPiN`gPCcIJ2>KF@GQ- zy+WSUZ=Nm@WVI#O`I|!zx_Q)hUhD|kKOCNp;`B6kcM{zXx2%Upi9QFiihNeLIN;{9 zK|y{lzJM;CL$>~7z$E_vuI|4b^DVm$FhR(ZGfP2OJ#afG`g`k_`!aM?ygM3?#dVi% zBJ7#zV|GvN3aDIr!M1XNV3jy36;ZP%6__^ClmS2iomY2Qr%{=i3 z#(s*dDZJlYU8YRFe0_SNY~$pbmWZC3y=C6LnqRv3XV7lgk`T~?nlPE zX*%hxpc?T)q3vCbN-duOt6E}r7Q-H!z=}c!bqNMTMv!=M{Q&6kMW*nJ?I7xqI&3NX zHk)YIy$So{;L8pZXiGsP??^isV?0@JP?E@oWm(E!;9JFZ@ z6{0?o_v{JBXVw$|kDnP6f&9#xJ?4nhKbt)?|Cu!xXVcGS{$G1Z|6`xW+SuI~(5Nx! z1&^Z)KiTuy6@Mf^O{mZ&>u^$>@Ib>5aL|&IK)2ObhmL(2J=u5S{2ExL@-3KFQhFyM zxDyklhJ-2j{FX%zj|R}i?&I0acI8QmHtZX z^oEQkT68h~9B-0Ax2&vtpUt_j(o@+EnRGy)vOeDU;~CRta0E4Q%eMy+ zU*KLFPlXF&%FRS{w9+^ZX;#sWmXb8kmEwpx+i>v5FcS0RFD#CSkcqnH=;pdp)K#T{ zoEhYKnN`m5T##FCxViP8%uQ2!1oBk!FXr)1%36exOz$91xj%os*_dw^-D z@DdmM%8tIaZxL8?nEeG?QBHSZ0m2?6=}4ENOPgU+nvJbE^H8=R1FGrLQ+01zgJ((1 z)jcPTQ1uHLL)r>M!_o(rRAzzXhAMRb>u*951ZQYU_{Ch#Lac92u;OXdzk+%!KtW#~ zWFZyFvDQRDWy#dT=$-l3lPo%->=9rEBi{)i><>sA7X>s?4WocP@SFL`Cgasj!So~8 z()~zv??Q6Fq^N#bhX=m7vbQwh!BqL2T3F;Tu_pf#MI%p9JU;;LT)VUX5{*4xVOPHY z(1-h2nF(R`f|vyJ7!+f_{jyA6(I1l>BDKZXV|GNtSZiItVJo?O&7+SXIdO9BJt0>* z6$=`rP4!4Lf-JL?!*j)By6i^n(8XiBaeFl?*&R1Co`&wa^J)G5KgZu&cYoCoIx`sn z`Sa8NQ8fR)%=h140ImbVnb{^kdHDYi&3`WiqBCRvuRMUpxnZp8l25Skzk~m3f9TBk z{|WwY|M|aWGe9G6fzcwwCxO7f6Z|zDp)=$BC&9mW0zhL*GqKp*Cz|8m(SI#8qBA4^ zC;DIOie@(G_7|TZ?tcgUqZ$1_LI0&0aGjwWvl9LZWczpEKUxw06ZokW&{&C!0Uq`V aVfuH-KLTO@0|IFLl=g$)2OtCm_ + + + + + + + + + + Builds, tests, and runs the project project1_sra. + + + diff --git a/1401417015 AngelFlag/project1_sra/manifest.mf b/1401417015 AngelFlag/project1_sra/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml b/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml new file mode 100644 index 0000000..d09e2ba --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties b/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties new file mode 100644 index 0000000..aa1ae87 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=9d079792 +build.xml.script.CRC32=e0732309 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=9d079792 +nbproject/build-impl.xml.script.CRC32=583300d1 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.properties b/1401417015 AngelFlag/project1_sra/nbproject/project.properties new file mode 100644 index 0000000..b4abe45 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/project1_sra.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=project1_sra.Project1_sra +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.xml b/1401417015 AngelFlag/project1_sra/nbproject/project.xml new file mode 100644 index 0000000..4ad2928 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + project1_sra + + + + + + + + + diff --git a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java new file mode 100644 index 0000000..551a769 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java @@ -0,0 +1,61 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project1_sra; +import java.util.Random; +/** + * + * @author THE NET + */ +public class Project1_sra { + + /** + * @param args the command line arguments + */ + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = generate(); + + public static void main(String[] args) { + + int[] arr = new int[7]; + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = ge + double br = 0; + double sum = 0; + + for (int i = 0; i < arr.length; i++ ) { + + arr[i] = generate(); + System.out.println(arr[i]); + + if(arr[i]%5 == 0){ + + sum = sum + arr[i]; + System.out.println("Няма остатък: " + arr[i]); + + br = br + 1; + } + } + System.out.println("Сумата на елементите е : " + sum + " и броят им е : " + br); + calc(sum, br); + + } + + private static int generate() { + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; +} + + public static void calc(double sum, double br){ + + double result = sum / br; + System.out.println("средно аритметично на елементите, които се делят на 5 без остатък е: " + result); + } +} diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/build.xml b/1401417015 AngelFlag/project2_arrayS#@rT/build.xml new file mode 100644 index 0000000..340c776 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project2_arrayS#@rT. + + + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf b/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml new file mode 100644 index 0000000..e8071a0 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties new file mode 100644 index 0000000..ed3fc1c --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=ca70fcad +build.xml.script.CRC32=380720e7 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=ca70fcad +nbproject/build-impl.xml.script.CRC32=3eeabac3 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties new file mode 100644 index 0000000..f8470fe --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/project2_arrayS__rT.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=project2_arrays.rt.Project2_arraySRT +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml new file mode 100644 index 0000000..ee98d19 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + project2_arrayS#@rT + + + + + + + + + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java b/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java new file mode 100644 index 0000000..326d4a9 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java @@ -0,0 +1,156 @@ +package project2_arrays.rt; + +import java.util.Scanner; + +//Задача 4. Елементите на масив са имена на населени места, +//започващи с главна буква. Да се съставят ППГ за: +//а) въвеждане на елементите на масива (не повече от 50). +//ж) извеждане на екрана на всички населени места, в чиито имена буквата +//"е" или "Е" се среща 2, 3 или 4 пъти, а буквата "р" не се среща нито веднъж; + +public class Project2_arraySRT { + + + static int br = 0; + static String array [] = new String[50]; + static Scanner keyboard = new Scanner(System.in, "windows-1251"); + + public static void main(String[] args) { + + menu(); + } + + public static void menu() { + + System.out.println("Меню"); // Извеждане на менюто в конзолата + System.out.println(" 1. Въвеждане на градове от конзола"); + System.out.println(" 2. Въвеждане на градове от задание"); + System.out.println(" 3. Принти масива"); + System.out.println(" 4. Особената част!"); + System.out.println(" 5. Изход"); + System.out.print("Изберете възможност (1-5): "); + + //int myChoice = keyboard.nextInt(); + + //String Text; + switch(keyboard.nextLine()){ + + case "1": + System.out.println("Вие избрахте 1: Въвеждане на градове от конзола"); + input(); + menu(); + + break; + + case "2": + System.out.println("Вие избрахте 2: Въвеждане на градове от задание"); + autoArray(); + menu(); + break; + + case "3": + System.out.println("Вие избрахте 3 да принтирате масива"); + printAll(); + menu(); + break; + + case "4": + System.out.println("Вие избрахте да принтирате Особена част"); + printSpecial(); + menu(); + + break; + + case "5": + System.out.println("Изход - Довиждане"); + //menu(); + break; + + default: + System.out.println("Въвели сте грешен избор!"); + menu(); + break; + + } + + //Keyboard.close(); + + } + //int[] array = new int[50];//tova mi e za dvata masiva! + + + public static void input(){ + + System.out.print("Напишете град: "); + + for (int i = br ; i < array.length; i++) { + array[i] = keyboard.nextLine(); + break; + } + br++; + } + + public static String autoTowns(){ + + String[] towns = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница", "Пловидв" }; + br++; + return towns[br]; + + } + + public static void autoArray(){ + + System.out.println("Избрани градове!"); + + for (int i = 0; i < array.length; i++){ + + array[i] = autoTowns(); + + } + br = array.length; + + + } + + public static void printAll(){ + + System.out.println("Избраните градове сa: " + array[0]); + + for(int i = 0; i < array.length; i++) { + + if (array[i] == null) { + break; + } + + System.out.println(array[i]); + + } + +// for(String elements : array) { +// System.out.println(elements); +// } + + } +// + public static void printSpecial(){ + System.out.println("->Градовете,в чиито имена буквата \"е\" или \"Е\" се " + + "среща 2, 3 или 4 пъти, а буквата \"р\" не се среща нито веднъж: \n"); + + int non=0; + + for(int i=0; i1 && br<5 && (array[i].indexOf('р') == -1)) + {System.out.print(" " + array[i] + "; \n"); non++;} + } + if(0 == non) System.out.println("\nНяма такива!!!!"); + } + } + + //public static String[] m = new String[]{"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; + +//} + + diff --git a/1401417015 AngelFlag/project2_final/build.xml b/1401417015 AngelFlag/project2_final/build.xml new file mode 100644 index 0000000..c1fd7c5 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project2_final. + + + diff --git a/1401417015 AngelFlag/project2_final/manifest.mf b/1401417015 AngelFlag/project2_final/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml b/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml new file mode 100644 index 0000000..20ffcc0 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties b/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties new file mode 100644 index 0000000..d43dd13 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=2e808e45 +build.xml.script.CRC32=b172d6e1 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=2e808e45 +nbproject/build-impl.xml.script.CRC32=a9df7049 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project2_final/nbproject/project.properties b/1401417015 AngelFlag/project2_final/nbproject/project.properties new file mode 100644 index 0000000..999e847 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/project2_final.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=project2_final.Project2_final +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/project2_final/nbproject/project.xml b/1401417015 AngelFlag/project2_final/nbproject/project.xml new file mode 100644 index 0000000..6246a84 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + project2_final + + + + + + + + + diff --git a/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java b/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java new file mode 100644 index 0000000..0c91694 --- /dev/null +++ b/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java @@ -0,0 +1,69 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project2_final; + +import java.util.Scanner; + + + +/** + * + * @author THE NET + */ +public class Project2_final { + + Scanner Keyboard = new Scanner(System.in); + int myChoice = Keyboard.nextInt(); + String[] array = new String[50]; + + + public static void main(String[] args) { + + System.out.println("Меню"); // Извеждане на менюто в конзолата + System.out.println(" 1. Въвеждане на градове от конзола"); + System.out.println(" 2. Въвеждане на градове от задание"); + System.out.println(" 3. Принти масива"); + System.out.println(" 4. Особената част!"); + System.out.println(" 5. Изход"); + System.out.print("Изберете възможност (1-5): "); + System.out.println("assfafads"); + + String Text; + switch(myChoice){ + + case 1: Text = "Вие избрахте 1: Въвеждане на градове от конзола"; + input(); + break; + + case 2: Text = "Вие избрахте 2: Въвеждане на градове от задание"; + autoTown(); + break; + + case 3: Text = "Вие избрахте да принтирате масива"; + break; + + case 4: Text = "Вие избрахте да принтирате Особена част"; + break; + case 5: Text = "Изход"; + break; + default: Text = "Въвели сте грешен избор!"; + } + + } + //Scanner scan = new Scanner (System.in); + //int num1 = scan.nextInt(); + + + //need to create the Scanner variable: +//emember to right click on the main page, select source, and then select organize imports. Next you need to create an int variable to store the first input. +//Read more: http://www.java-made-easy.com/java-scanner.html#ixzz3MHQU8mMd + + /** + * @param args the command line arguments + */ + + +} diff --git a/1401417015 AngelFlag/projecteasygo/build.xml b/1401417015 AngelFlag/projecteasygo/build.xml new file mode 100644 index 0000000..a13afae --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project projecteasygo. + + + diff --git a/1401417015 AngelFlag/projecteasygo/manifest.mf b/1401417015 AngelFlag/projecteasygo/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml b/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml new file mode 100644 index 0000000..2024d15 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties b/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties new file mode 100644 index 0000000..b3ec142 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=ae93b4fe +build.xml.script.CRC32=fa82d58a +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=ae93b4fe +nbproject/build-impl.xml.script.CRC32=c66860c8 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/project.properties b/1401417015 AngelFlag/projecteasygo/nbproject/project.properties new file mode 100644 index 0000000..a50d20a --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/projecteasygo.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=projecteasygo.Projecteasygo +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/project.xml b/1401417015 AngelFlag/projecteasygo/nbproject/project.xml new file mode 100644 index 0000000..1e4a658 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + projecteasygo + + + + + + + + + diff --git a/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java b/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java new file mode 100644 index 0000000..c180a07 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java @@ -0,0 +1,38 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package projecteasygo; + +/** + * + * @author THE NET + */ +public class Projecteasygo { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + //String imena[] = new String[50]; + String[] imena = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; + + + //String[] array = new String[50]; + + низовеЗапочващиС(imena, "и"); + + System.out.println(imena); + } + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Низове започващи с " + search + ":"); + + for(int i=0; i + + + + + + + + + + Builds, tests, and runs the project test. + + + diff --git a/1401417015 AngelFlag/test/manifest.mf b/1401417015 AngelFlag/test/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/test/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/test/nbproject/build-impl.xml b/1401417015 AngelFlag/test/nbproject/build-impl.xml new file mode 100644 index 0000000..3d21807 --- /dev/null +++ b/1401417015 AngelFlag/test/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/test/nbproject/genfiles.properties b/1401417015 AngelFlag/test/nbproject/genfiles.properties new file mode 100644 index 0000000..5e8d9c2 --- /dev/null +++ b/1401417015 AngelFlag/test/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=3dbc7120 +build.xml.script.CRC32=a8ad46cf +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=3dbc7120 +nbproject/build-impl.xml.script.CRC32=e020339c +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/test/nbproject/project.properties b/1401417015 AngelFlag/test/nbproject/project.properties new file mode 100644 index 0000000..fae5d7f --- /dev/null +++ b/1401417015 AngelFlag/test/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/test.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=test.Test +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/test/nbproject/project.xml b/1401417015 AngelFlag/test/nbproject/project.xml new file mode 100644 index 0000000..fe97871 --- /dev/null +++ b/1401417015 AngelFlag/test/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + test + + + + + + + + + diff --git a/1401417015 AngelFlag/test/src/test/Test.java b/1401417015 AngelFlag/test/src/test/Test.java new file mode 100644 index 0000000..e452481 --- /dev/null +++ b/1401417015 AngelFlag/test/src/test/Test.java @@ -0,0 +1,364 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package test; + +import java.io.IOException; +import java.util.*; + +/** + * + * @author fmi + */ +public class Test { + + /** + * @param args the command line arguments + * @throws java.io.IOException + */ + public static void main(String[] args) throws IOException{ + + // TODO code application logic here + byte myByte = 22; + short myShort = 257; + int myInt = -123; + long myLong = 123L; // 077 0x077 + + float myFloat = 2.34F; + double myDouble = 2.34; // + + char myChar = 'c'; //'\u0000' + boolean myBoolean = false; // true + + // -------------------- Referent ----- + String myName = "Stoyan\\ "; // \n + Object myOtherByte = 3; + + System.out.print(myName); + System.out.println(myName); + + // int ch; + // 1. + // ch = System.in.read(); + // System.out.print((char) ch); + + // while ((ch = System.in.read()) != '\n') { + // System.out.print((char) ch); + // } + + // 2. + Scanner input = new Scanner(System.in); + System.out.print("Please enter your first name: "); + String firstName = input.nextLine(); + System.out.println(firstName); + + double number1 = 3.14; + double number2 = 2.71; + + System.out.println(number1 + number2); + + System.out.printf("%.3f \n", number1 + number2); + +// Old way for reading symbols +// BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); +// String firstString = br.readLine(); +// String lastString = br.readLine(); +// System.out.printf("Hello, %s %s!\n", firstString, lastString); + + + + for(int i = 0; i < 10; i++) + { + for (int j = 0; j < i; j ++) + { + System.out.print('*'); + } + System.out.print("\n"); + } + + Operations(2.32, 45.6); + + // Excersise 2 + // ############################################## 2 ################################### + // 1. Type conversions + long minNumber = 1; + long maxNumber = 1000000; + + // Generates a random number between 1 and 1000000 + long uniqueID = minNumber + (long)(Math.random() * ((maxNumber - minNumber) + 1)); + + // You can cast from one primitive value into another by putting what you want between ( ) + // (byte) (short) (long) (double) + // (float), (boolean) & (char) don't work. + // (char) stays as a number instead of a character + + // You convert from a primitive to a string like this + String stringNumber = Long.toString(maxNumber); + + // Byte.toString(bigByte); Short.toString(bigShort); Integer.toString(bigInt); + // Float.toString(bigFloat); Double.toString(bigDouble); Boolean.toString(trueOrFalse); + + // You convert from a String to a primitive like this + int numberString = Integer.parseInt(stringNumber); + + // parseShort, parseLong, parseByte, parseFloat, parseDouble, parseBoolean + + System.out.println("Unique ID set to: " + uniqueID); + + + // 2) If + String name = ""; + + // userInput.hasNextLine() returns true if a String was entered in the keyboard + if(input.hasNextLine()){ + + // userInput.nextLine() returns the value that was entered at the keyboard + System.out.print("Enter your family name; \n"); + name = input.nextLine(); + + // hasNextInt, hasNextFloat, hasNextDouble, hasNextBoolean, hasNextByte, + // hasNextLong, nextInt, nextDouble, nextFloat, nextBoolean, etc. + + } + + System.out.printf("%s \n", name); + + // 3. if-else + int randomNumber = (int) (Math.random() * 126) + 1; + + char favoriteChar = (char) randomNumber; + + // if then else statement + // > < == != >= <= + if(randomNumber == 32){ + + System.out.println("Favorite character set to: Space"); + + } else if(randomNumber == 10){ + + System.out.println("Favorite character set to: New Line"); + + } else { + + System.out.println("Favorite character set to: " + favoriteChar); + + } + + + // Logical operators + // ! Logical operators : Converts the boolean value to its right to its opposite form ie. true to false + // & : Returns true if boolean value on the right and left are both true (Always evaluates both boolean values) + // && : Returns true if boolean value on the right and left are both true (Stops evaluating after first false) + // | : Returns true if either boolean value on the right or left are true (Always evaluates both boolean values) + // || : Returns true if either boolean value on the right or left are true (Stops evaluating after first true) + // ^ : Returns true if there is 1 true and 1 false boolean value on the right or left + + if((randomNumber > 97) && (randomNumber < 122)){ + + System.out.println("Favorite character is a lowercase letter"); + + } + + if(((randomNumber > 97) && (randomNumber < 122)) || ((randomNumber > 64) && (randomNumber < 91))){ + + System.out.println("Favorite character is a letter"); + + } + + if(!false){ + + System.out.println("I turned false to " + !false); + + } + + // The ternary operator assigns one or another value based on a condition + int whichIsBigger = (50 > randomNumber) ? 50 : randomNumber; + + System.out.println("The biggest number is " + whichIsBigger); + + + // 4. switch + // The switch statement is great for when you have a limited number of values + // and the values are int, byte, or char unless you have Java 7 which allows Strings + switch(randomNumber){ + + case 8 : + System.out.println("Favorite character set to: Backspace"); + break; + + case 9 : + System.out.println("Favorite character set to: Horizontal Tab"); + break; + + case 10 : + case 11 : + case 12 : + System.out.println("Favorite character set to: Something else weird"); + break; + + default : + System.out.println("Favorite character set to: " + favoriteChar); + break; + + } + + + // 5. loops + // System.out.println(1); + // System.out.println(2); + // System.out.println(3); + + // 5.1 while + int i = 1; + while(i < (maxNumber / 2000)){ + + System.out.println(i); + i++; + + // This isn't needed, but if you want to jump out of a loop use break + if(i == (maxNumber/20000)) break; + } + + // 5.2 do - while + int number = 50; + // Do while loops are used when you want to execute the code in the braces at least once + do { + + System.out.println("Guess my number up to 100"); + + // If what they entered isn't a number send a warning + while(!input.hasNextInt()){ + + String numberEntered = input.next(); + System.out.printf("%s is not a number\n", numberEntered); + + } + number = input.nextInt(); + + }while(number != 50); + + System.out.println("Yes the number was 50"); + + + // 5.3 for + for(int i1 = 0; i1 <= 100; i1++){ + + // continue is used to skip 1 iteration of the loop + if(i1 == 90) continue; + + System.out.println(i1); + + } + // 5.4 + int[] numbers = {2, 3, 5, 7, 11, 13, 17, 19}; + for (int i2 : numbers){ + System.out.println(i2); + } + + // An array is a fixed series of boxes that contain multiple values of the same data type + // How you create arrays + // int[] favoriteNumbers; + // favoriteNumbers = new int[20]; + + int[] favoriteNumbers1 = new int[20]; + + favoriteNumbers1[0] = 100; + + String[] stringArray = {"Random", "Words", "Here"}; + + // for(dataType[] varForRow : arrayName) + for(String word : stringArray) + { + System.out.println(word); + } + + // This is a multidimensional array + String[][][] arrayName = { + { + { "000", "001" }, + { "100", "011" }, + { "200", "021" }, + { "300", "031" } + }, + { + { "010", "101" }, + { "110", "111" }, + { "210", "121" }, + { "310", "131" } + }, + { + { "020", "201" }, + { "120", "211" }, + { "220", "221" }, + { "320", "231" } + } + }; + System.out.println(arrayName[2][3][1]); + /* + for(int i = 0; i < arrayName.length; i++) + { + for(int j = 0; j < arrayName[i].length; j++) + { + + for(int k = 0; k < arrayName[i][j].length; k++) + { + System.out.print("| " + arrayName[i][j][k] + " "); + + } + } + + System.out.println("|"); + + } + */ + // You can copy an array (stringToCopy, indexes to copy) + String[] cloneOfArray = Arrays.copyOf(stringArray, 3); + + // You can print out the whole array + System.out.println(Arrays.toString(cloneOfArray)); + + // Returns the index or a negative number + System.out.println(Arrays.binarySearch(cloneOfArray, "Random")); + + + + } + + static void Operations(double par1, double par2) + { + System.out.printf("%.2f + %.2f = %.2f", par1, par2, par1 + par2); + + } + +} + +/* +import java.util.*; +public class ReadingStringsNewStyle { +public static void main(String[] args) { +Scanner input = new Scanner(System.in); +System.out.print("Please enter your first name: "); +String firstName = input.nextLine(); +System.out.print("Please enter your last name: "); +String lastName = input.nextLine(); +System.out.printf("Hello, %s %s!\n", firstName, lastName); +// input.close(); - Don't close Scanner reading System.in! +} +} +*/ +/** + * + * @author THE NET + */ + //public class Test { + + /** + * @param args the command line arguments + */ + //public static void main(String[] args) { + // TODO code application logic here + // } + +//} diff --git a/1401417015 AngelFlag/tutorial/build.xml b/1401417015 AngelFlag/tutorial/build.xml new file mode 100644 index 0000000..ee2c441 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project tutorial. + + + diff --git a/1401417015 AngelFlag/tutorial/manifest.mf b/1401417015 AngelFlag/tutorial/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml b/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml new file mode 100644 index 0000000..f56bab2 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties b/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties new file mode 100644 index 0000000..a39718a --- /dev/null +++ b/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=5c4846ae +build.xml.script.CRC32=36ee11c6 +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=5c4846ae +nbproject/build-impl.xml.script.CRC32=7da3cc3a +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/tutorial/nbproject/project.properties b/1401417015 AngelFlag/tutorial/nbproject/project.properties new file mode 100644 index 0000000..c68e677 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/tutorial.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=tutorial.Tutorial +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/tutorial/nbproject/project.xml b/1401417015 AngelFlag/tutorial/nbproject/project.xml new file mode 100644 index 0000000..fd2f9bc --- /dev/null +++ b/1401417015 AngelFlag/tutorial/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + tutorial + + + + + + + + + diff --git a/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java b/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java new file mode 100644 index 0000000..4b882dd --- /dev/null +++ b/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java @@ -0,0 +1,61 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package tutorial; + +/** + * + * @author THE NET + */ +public class Tutorial { + + //static String randomString = "String to Print"; + //static final Double PINUM = 3.141529; + int integerOne =22; + int integerTwo = integerOne + 1; + + public static void main(String[] args) { + //int integerOne =22; + // int integerTwo = integerOne + 1; + + //System.out.println(integerTwo); + byte bigByte = 127; + short bigShort = 32767; + int bigInt = 2100000000; + long bigLong = 9220000000000000000L; + float bigFloat = 3.14F; + double bigDouble = 3.148237948727347923748; + System.out.println(Double.MAX_VALUE); + System.out.println(Float.MAX_VALUE); + + boolean trueOrFalse = true; + + char randomChar = 66; + char anotherChar = 'A'; + + char escapedChars = '\\'; + + String randomString = "I am a random String"; + String anotherString = "Stuff"; + + String andAnotherString = randomString + " " + anotherString; + + String byteString = Byte.toString(bigByte); + String shortString = Short.toString(bigByte); + String intString = Integer.toString(bigByte); + String longString = Long.toString(bigByte); + String floatString = Float.toString(bigByte); + String doubleString = Double.toString(bigByte); + String booleanString = Boolean.toString(true); + + double aDoubleValue = 3.14546466464; + int doubleToInt = (int) aDoubleValue; + + System.out.println(randomChar); + System.out.println(andAnotherString); + System.out.println(doubleToInt); + } + +} diff --git a/1401417015 AngelFlag/zad1/build.xml b/1401417015 AngelFlag/zad1/build.xml new file mode 100644 index 0000000..3a4efc5 --- /dev/null +++ b/1401417015 AngelFlag/zad1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project zad1. + + + diff --git a/1401417015 AngelFlag/zad1/manifest.mf b/1401417015 AngelFlag/zad1/manifest.mf new file mode 100644 index 0000000..1574df4 --- /dev/null +++ b/1401417015 AngelFlag/zad1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/zad1/nbproject/build-impl.xml b/1401417015 AngelFlag/zad1/nbproject/build-impl.xml new file mode 100644 index 0000000..cf535a2 --- /dev/null +++ b/1401417015 AngelFlag/zad1/nbproject/build-impl.xml @@ -0,0 +1,1413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + To run this application from the command line without Ant, try: + + java -jar "${dist.jar.resolved}" + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + Must select one file in the IDE or set profile.class + This target only works when run from inside the NetBeans IDE. + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set run.class + + + + + + Must select some files in the IDE or set test.includes + + + + + Must select one file in the IDE or set run.class + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + Must select one file in the IDE or set applet.url + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/zad1/nbproject/genfiles.properties b/1401417015 AngelFlag/zad1/nbproject/genfiles.properties new file mode 100644 index 0000000..75da4f8 --- /dev/null +++ b/1401417015 AngelFlag/zad1/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=bfefe4f0 +build.xml.script.CRC32=d6e3fe1c +build.xml.stylesheet.CRC32=8064a381@1.75.2.48 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=bfefe4f0 +nbproject/build-impl.xml.script.CRC32=8ce2ab13 +nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/zad1/nbproject/project.properties b/1401417015 AngelFlag/zad1/nbproject/project.properties new file mode 100644 index 0000000..c6058ad --- /dev/null +++ b/1401417015 AngelFlag/zad1/nbproject/project.properties @@ -0,0 +1,73 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=false +annotation.processing.processor.options= +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.dir}/classes +build.classes.excludes=**/*.java,**/*.form +# This directory is removed when the project is cleaned: +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +# Only compile against the classpath explicitly listed here: +build.sysclasspath=ignore +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +# Uncomment to specify the preferred debugger connection transport: +#debug.transport=dt_socket +debug.classpath=\ + ${run.classpath} +debug.test.classpath=\ + ${run.test.classpath} +# Files in build.classes.dir which should be excluded from distribution jar +dist.archive.excludes= +# This directory is removed when the project is cleaned: +dist.dir=dist +dist.jar=${dist.dir}/zad1.jar +dist.javadoc.dir=${dist.dir}/javadoc +excludes= +includes=** +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +main.class=zad1.Zad1 +manifest.file=manifest.mf +meta.inf.dir=${src.dir}/META-INF +mkdist.disabled=false +platform.active=default_platform +run.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +# Space-separated list of JVM arguments used when running the project. +# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. +# To set system properties for unit tests define test-sys-prop.name=value: +run.jvmargs= +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +source.encoding=UTF-8 +src.dir=src +test.src.dir=test diff --git a/1401417015 AngelFlag/zad1/nbproject/project.xml b/1401417015 AngelFlag/zad1/nbproject/project.xml new file mode 100644 index 0000000..90b3e52 --- /dev/null +++ b/1401417015 AngelFlag/zad1/nbproject/project.xml @@ -0,0 +1,15 @@ + + + org.netbeans.modules.java.j2seproject + + + zad1 + + + + + + + + + diff --git a/1401417015 AngelFlag/zad1/src/zad1/Zad1.java b/1401417015 AngelFlag/zad1/src/zad1/Zad1.java new file mode 100644 index 0000000..d98b776 --- /dev/null +++ b/1401417015 AngelFlag/zad1/src/zad1/Zad1.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package zad1; + +import java.util.Arrays; +import java.util.Random; +/** + * + * @author THE NET + */ +public class Zad1 { + + private static int Generate() { + + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; } + +//private static int generate() { Random rand = new Random(); int n = rand.nextInt(201); return n-100; + public static void main(String[] args) { + + } + +} diff --git a/1401417015 AngelFlag/zad1/src/zad1/random.java b/1401417015 AngelFlag/zad1/src/zad1/random.java new file mode 100644 index 0000000..c74ee45 --- /dev/null +++ b/1401417015 AngelFlag/zad1/src/zad1/random.java @@ -0,0 +1,62 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + + + +package zad1; +import java.util.*; +/** + * + * @author THE NET + */ +public class random { + /*public static void main(String[] args) { + // TODO Auto-generated method stub + + getRandomMembers(); + + }*/ + + + private static int getRandomNum(int range) { + Random rand = new Random(); + + return Math.abs(rand.nextInt()) % range + 1; + } + + private static int[] printArray(int[] randArray ){ + System.out.print("Random array from -100 to 100 [ "); + for (int print: randArray) { + System.out.print(print + ", "); + } + System.out.print("]"); + System.out.println(); + return randArray; + } + + + + public void getRandomMembers() { + int c = getRandomNum(50); + int [] randArray = new int[c]; + int membersCount = 0; + boolean isEven = false; + for (int i = 0; i < c; i++) { + randArray[i] = getRandomNum(200) -100; + if (randArray[i] <= 30 && randArray[i] >= -30 ) { + if(isEven = i % 2 == 0) { + membersCount++; + } + } + + } + + printArray(randArray); + System.out.println(membersCount + " from array elements are in interval from -30 to 30 and have even index" ); + + } +} + From 232817d6a854481f4e0df805a679aa57fc83ac44 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 23 Dec 2014 21:03:34 +0200 Subject: [PATCH 32/41] Revert "" This reverts commit 4ec436c4c0424ba37ffbc3aeb462b863183021bd. --- 1401417015 AngelFlag/project1_1/build.xml | 73 - 1401417015 AngelFlag/project1_1/manifest.mf | 3 - .../project1_1/nbproject/build-impl.xml | 1413 ----------------- .../project1_1/nbproject/genfiles.properties | 8 - .../project1_1/nbproject/project.properties | 73 - .../project1_1/nbproject/project.xml | 15 - .../project1_1/src/project1_1/Project1_1.java | 49 - 7 files changed, 1634 deletions(-) delete mode 100644 1401417015 AngelFlag/project1_1/build.xml delete mode 100644 1401417015 AngelFlag/project1_1/manifest.mf delete mode 100644 1401417015 AngelFlag/project1_1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/project1_1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/project1_1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/project1_1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java diff --git a/1401417015 AngelFlag/project1_1/build.xml b/1401417015 AngelFlag/project1_1/build.xml deleted file mode 100644 index c0e9842..0000000 --- a/1401417015 AngelFlag/project1_1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project project1_1. - - - diff --git a/1401417015 AngelFlag/project1_1/manifest.mf b/1401417015 AngelFlag/project1_1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/project1_1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml b/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml deleted file mode 100644 index d406dbf..0000000 --- a/1401417015 AngelFlag/project1_1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties b/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties deleted file mode 100644 index 1ef6991..0000000 --- a/1401417015 AngelFlag/project1_1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=9ed391e6 -build.xml.script.CRC32=6cf48811 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=9ed391e6 -nbproject/build-impl.xml.script.CRC32=fddda22b -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project1_1/nbproject/project.properties b/1401417015 AngelFlag/project1_1/nbproject/project.properties deleted file mode 100644 index 114ca30..0000000 --- a/1401417015 AngelFlag/project1_1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/project1_1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=project1_1.Project1_1 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/project1_1/nbproject/project.xml b/1401417015 AngelFlag/project1_1/nbproject/project.xml deleted file mode 100644 index 758ce10..0000000 --- a/1401417015 AngelFlag/project1_1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - project1_1 - - - - - - - - - diff --git a/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java b/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java deleted file mode 100644 index e13ab27..0000000 --- a/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package project1_1; -import java.util.Random; - -//б) произведението на ненулевите нечетни елементи; -/** - * - * @author THE NET - */ -public class Project1_1 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - int arr[] = new int[6]; - - int multiplied = 1;//инициализираме сума, която ти трябва за формулата; - - for (int i = 0; i < arr.length; i++ ) { - - arr[i] = generate(); - System.out.println(arr[i]); - - // тук изваждаме всички нечетни числа, които получаваме, когато разделим на две и имаме остатък едно! - //различно от нула. - - if(arr[i]%2 != 0 && arr[i] != 0){ - multiplied = multiplied * arr[i]; - - } - - } - System.out.println("Произведението на всички нечетни числа различни от нула e: " + multiplied); - } - - private static int generate() { - Random rand = new Random(); - int n = rand.nextInt(201); - return n-100; - - } - -} From 407a12c26f04e19a53c009e56f12f2b4bc2dff97 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 23 Dec 2014 21:27:14 +0200 Subject: [PATCH 33/41] Update --- .gitignore | 102 -- .gitignore1417951008175 | 80 - .../ArrayList2/build.xml | 73 - .../ArrayList2/manifest.mf | 3 - .../ArrayList2/nbproject/build-impl.xml | 1413 ----------------- .../ArrayList2/nbproject/genfiles.properties | 8 - .../ArrayList2/nbproject/project.properties | 73 - .../ArrayList2/nbproject/project.xml | 15 - .../ArrayList2/src/arraylist2/ArrayList2.java | 49 - .../DataTypes/build.xml | 73 - .../DataTypes/manifest.mf | 3 - .../DataTypes/nbproject/build-impl.xml | 1413 ----------------- .../DataTypes/nbproject/genfiles.properties | 8 - .../DataTypes/nbproject/project.properties | 75 - .../DataTypes/nbproject/project.xml | 15 - .../DataTypes/src/datatypes/DataTypes.java | 380 ----- .../DataTypes/src/datatypes/Test.java | 17 - .../ErrorHandling/build.xml | 73 - .../ErrorHandling/manifest.mf | 3 - .../ErrorHandling/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../ErrorHandling/nbproject/project.xml | 15 - .../src/errorhandling/ErrorHandling.java | 37 - .../JavaApplication1/manifest.mf | 3 - .../javaapplication1/JavaApplication1.java | 22 - .../ReadWrite/build.xml | 73 - .../ReadWrite/manifest.mf | 3 - .../ReadWrite/nbproject/build-impl.xml | 1413 ----------------- .../ReadWrite/nbproject/genfiles.properties | 8 - .../ReadWrite/nbproject/project.properties | 73 - .../ReadWrite/nbproject/project.xml | 15 - .../ReadWrite/src/readwrite/ReadWrite.java | 100 -- .../StackTrace/build.xml | 73 - .../StackTrace/manifest.mf | 3 - .../StackTrace/nbproject/build-impl.xml | 1413 ----------------- .../StackTrace/nbproject/genfiles.properties | 8 - .../StackTrace/nbproject/project.properties | 73 - .../StackTrace/nbproject/project.xml | 15 - .../StackTrace/src/stacktrace/StackTrace.java | 49 - .../StringArrays/build.xml | 73 - .../StringArrays/manifest.mf | 3 - .../StringArrays/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../StringArrays/nbproject/project.properties | 73 - .../StringArrays/nbproject/project.xml | 15 - .../src/stringarrays/StringArrays.java | 48 - .../StringManipulation/build.xml | 73 - .../StringManipulation/manifest.mf | 3 - .../nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../StringManipulation/nbproject/project.xml | 15 - .../StringManipulation.java | 137 -- 1401417003_KalinDimov/NewProject/build.xml | 73 - 1401417003_KalinDimov/NewProject/manifest.mf | 3 - .../NewProject/nbproject/build-impl.xml | 1413 ----------------- .../NewProject/nbproject/genfiles.properties | 8 - .../NewProject/nbproject/project.properties | 73 - .../NewProject/nbproject/project.xml | 15 - .../NewProject/src/newproject/NewProject.java | 23 - 61 files changed, 13729 deletions(-) delete mode 100644 .gitignore delete mode 100644 .gitignore1417951008175 delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/build.xml delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/ArrayList2/src/arraylist2/ArrayList2.java delete mode 100644 0000000000_StoyanCheresharov/DataTypes/build.xml delete mode 100644 0000000000_StoyanCheresharov/DataTypes/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/DataTypes/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/DataTypes/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/DataTypes/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/DataTypes/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/DataTypes/src/datatypes/DataTypes.java delete mode 100644 0000000000_StoyanCheresharov/DataTypes/src/datatypes/Test.java delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/build.xml delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/ErrorHandling/src/errorhandling/ErrorHandling.java delete mode 100644 0000000000_StoyanCheresharov/JavaApplication1/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/JavaApplication1/src/javaapplication1/JavaApplication1.java delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/build.xml delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/ReadWrite/src/readwrite/ReadWrite.java delete mode 100644 0000000000_StoyanCheresharov/StackTrace/build.xml delete mode 100644 0000000000_StoyanCheresharov/StackTrace/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/StackTrace/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/StackTrace/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/StackTrace/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/StackTrace/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/StackTrace/src/stacktrace/StackTrace.java delete mode 100644 0000000000_StoyanCheresharov/StringArrays/build.xml delete mode 100644 0000000000_StoyanCheresharov/StringArrays/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/StringArrays/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/StringArrays/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/StringArrays/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/StringArrays/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/StringArrays/src/stringarrays/StringArrays.java delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/build.xml delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/manifest.mf delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/nbproject/build-impl.xml delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/nbproject/genfiles.properties delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/nbproject/project.properties delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/nbproject/project.xml delete mode 100644 0000000000_StoyanCheresharov/StringManipulation/src/stringmanipulation/StringManipulation.java delete mode 100644 1401417003_KalinDimov/NewProject/build.xml delete mode 100644 1401417003_KalinDimov/NewProject/manifest.mf delete mode 100644 1401417003_KalinDimov/NewProject/nbproject/build-impl.xml delete mode 100644 1401417003_KalinDimov/NewProject/nbproject/genfiles.properties delete mode 100644 1401417003_KalinDimov/NewProject/nbproject/project.properties delete mode 100644 1401417003_KalinDimov/NewProject/nbproject/project.xml delete mode 100644 1401417003_KalinDimov/NewProject/src/newproject/NewProject.java diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 294c738..0000000 --- a/.gitignore +++ /dev/null @@ -1,102 +0,0 @@ -/1401417003_KalinDimov/NewProject/nbproject/private/ -/1401417003_KalinDimov/NewProject/build/ -/0000000000_StoyanCheresharov/DataTypes/nbproject/private/ -/0000000000_StoyanCheresharov/DataTypes/build/ -/1401417015 AngelFlag/datatype/nbproject/private/ -/1401417015 AngelFlag/datatype/build/ -/1401417015 AngelFlag/bigdecimal/nbproject/private/ -/1401417015 AngelFlag/bigdecimal/build/ -/1401417015 AngelFlag/method/nbproject/private/ -/1401417015 AngelFlag/upr1zad2intI=5/nbproject/private/ -/1401417015 AngelFlag/upr1zad2intI=5/build/ -/1401417015 AngelFlag/exam1task3intTwo/nbproject/private/ -/1401417015 AngelFlag/exam1task3intTwo/build/ -/1401417015 AngelFlag/exam1task4/nbproject/private/ -/1401417015 AngelFlag/exam1task3.2/nbproject/private/ -/1401417015 AngelFlag/exam1task3.2/build/ -/1401417015 AngelFlag/exam1task4/build/ -/1401417015 AngelFlag/exam1task5/nbproject/private/ -/1401417015 AngelFlag/exam1task5/build/ -/1401417015 AngelFlag/exam1task6/nbproject/private/ -/1401417015 AngelFlag/exam1task6/build/ -/1401417015 AngelFlag/exam1task7/nbproject/private/ -/1401417015 AngelFlag/exam1task7/build/ -/1401417015 AngelFlag/exam1task8/nbproject/private/ -/1401417015 AngelFlag/exam1task8/build/ -/1401417015 AngelFlag/exam1task9/nbproject/private/ -/1401417015 AngelFlag/exam1task9/build/ -/1401417015 AngelFlag/exam1task8a/nbproject/private/ -/1401417015 AngelFlag/exam1task8a/build/ -/1401417015 AngelFlag/exam1task9a/nbproject/private/ -/1401417015 AngelFlag/exam1task9a/build/ -/1401417015 AngelFlag/exam1task9b/nbproject/private/ -/1401417015 AngelFlag/exam1task9b/build/ -/1401417015 AngelFlag/exam1task9c/nbproject/private/ -/1401417015 AngelFlag/exam1task9c/build/ -/1401417015 AngelFlag/exam1_10/nbproject/private/ -/1401417015 AngelFlag/exam1_10/build/ -/1401417015 AngelFlag/2_1/nbproject/private/ -/1401417015 AngelFlag/2_1/build/ -/1401417015 AngelFlag/exam2_2/nbproject/private/ -/1401417015 AngelFlag/exam2_1a/nbproject/private/ -/1401417015 AngelFlag/exam2_1a/build/ -/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/private/ -/1401417015 AngelFlag/Exam2_1bdowhile/build/ -/1401417015 AngelFlag/exam2_1c/nbproject/private/ -/1401417015 AngelFlag/exam2_1c/build/ -/1401417015 AngelFlag/course/nbproject/private/ -/1401417015 AngelFlag/course/build/ -/1401417015 AngelFlag/myWorld/nbproject/private/ -/1401417015 AngelFlag/Mybody/nbproject/private/ -/1401417015 AngelFlag/Mybody/build/ -/1401417015 AngelFlag/upr5_2/nbproject/private/ -/1401417015 AngelFlag/exam2_2/build/ -/1401417015 AngelFlag/exam2task2/nbproject/private/ -/1401417015 AngelFlag/exam2task2/build/ -/1401417015 AngelFlag/exam2_3/nbproject/private/ -/1401417015 AngelFlag/exam2_3/build/ -/1401417015 AngelFlag/exam2_4.1/nbproject/private/ -/1401417015 AngelFlag/exam2_4.1/build/ -/1401417015 AngelFlag/exam2_41a/nbproject/private/ -/1401417015 AngelFlag/exam2_41a/build/ -/1401417015 AngelFlag/exam2_5task5/nbproject/private/ -/1401417015 AngelFlag/exam2_5task5/build/ -/1401417015 AngelFlag/exam2_6/nbproject/private/ -/1401417015 AngelFlag/exam2_6/build/ -/1401417015 AngelFlag/exam2_7menu/nbproject/private/ -/1401417015 AngelFlag/exam2_7menu/build/ -/1401417015 AngelFlag/exam2.8menuA/nbproject/private/ -/1401417015 AngelFlag/exam2.8menuA/build/ -/1401417015 AngelFlag/exam2_9/nbproject/private/ -/1401417015 AngelFlag/exam2_9/build/ -/1401417015 AngelFlag/exam2_10/nbproject/private/ -/1401417015 AngelFlag/exam2_10/build/ -/1401417015 AngelFlag/exam2_11/nbproject/private/ -/1401417015 AngelFlag/exam2_11/build/ -/1401417015 AngelFlag/exam3_1/nbproject/private/ -/1401417015 AngelFlag/exam3_1/build/ -/1401417015 AngelFlag/Human/nbproject/private/ -/1401417015 AngelFlag/Human/build/ -/1401417015 AngelFlag/nfs/nbproject/private/ -/1401417015 AngelFlag/nfs/build/ -/1401417015 AngelFlag/exam3_1/dist/ -/1401417015 AngelFlag/cat/nbproject/private/ -/1401417015 AngelFlag/cat/build/ -/1401417015 AngelFlag/zadacha1zaizpit/nbproject/private/ -/1401417015 AngelFlag/zadacha1zaizpit/build/ -/1401417015 AngelFlag/exam1Stoyan/nbproject/private/ -/1401417015 AngelFlag/exam1Stoyan/build/ -/1401417015 AngelFlag/ski/nbproject/private/ -/1401417015 AngelFlag/exam2/nbproject/private/ -/1401417015 AngelFlag/exam2/build/ -/1401417015 AngelFlag/animals/nbproject/private/ -/1401417015 AngelFlag/animals/build/ -/1401417015 AngelFlag/oop1_MyWorld/nbproject/private/ -/1401417015 AngelFlag/oop1_MyWorld/build/ -/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/private/ -/1401417015 AngelFlag/alabala/nbproject/private/ -/1401417015 AngelFlag/alabala/build/ -/1401417015 AngelFlag/project2_arrayS#@rT/build/ -/1401417015 AngelFlag/project2_final/nbproject/private/ -/1401417015 AngelFlag/projecteasygo/nbproject/private/ -/1401417015 AngelFlag/projecteasygo/build/ \ No newline at end of file diff --git a/.gitignore1417951008175 b/.gitignore1417951008175 deleted file mode 100644 index d6f9cf7..0000000 --- a/.gitignore1417951008175 +++ /dev/null @@ -1,80 +0,0 @@ -/1401417003_KalinDimov/NewProject/nbproject/private/ -/1401417003_KalinDimov/NewProject/build/ -/0000000000_StoyanCheresharov/DataTypes/nbproject/private/ -/0000000000_StoyanCheresharov/DataTypes/build/ -/1401417015 AngelFlag/datatype/nbproject/private/ -/1401417015 AngelFlag/datatype/build/ -/1401417015 AngelFlag/bigdecimal/nbproject/private/ -/1401417015 AngelFlag/bigdecimal/build/ -/1401417015 AngelFlag/method/nbproject/private/ -/1401417015 AngelFlag/upr1zad2intI=5/nbproject/private/ -/1401417015 AngelFlag/upr1zad2intI=5/build/ -/1401417015 AngelFlag/exam1task3intTwo/nbproject/private/ -/1401417015 AngelFlag/exam1task3intTwo/build/ -/1401417015 AngelFlag/exam1task4/nbproject/private/ -/1401417015 AngelFlag/exam1task3.2/nbproject/private/ -/1401417015 AngelFlag/exam1task3.2/build/ -/1401417015 AngelFlag/exam1task4/build/ -/1401417015 AngelFlag/exam1task5/nbproject/private/ -/1401417015 AngelFlag/exam1task5/build/ -/1401417015 AngelFlag/exam1task6/nbproject/private/ -/1401417015 AngelFlag/exam1task6/build/ -/1401417015 AngelFlag/exam1task7/nbproject/private/ -/1401417015 AngelFlag/exam1task7/build/ -/1401417015 AngelFlag/exam1task8/nbproject/private/ -/1401417015 AngelFlag/exam1task8/build/ -/1401417015 AngelFlag/exam1task9/nbproject/private/ -/1401417015 AngelFlag/exam1task9/build/ -/1401417015 AngelFlag/exam1task8a/nbproject/private/ -/1401417015 AngelFlag/exam1task8a/build/ -/1401417015 AngelFlag/exam1task9a/nbproject/private/ -/1401417015 AngelFlag/exam1task9a/build/ -/1401417015 AngelFlag/exam1task9b/nbproject/private/ -/1401417015 AngelFlag/exam1task9b/build/ -/1401417015 AngelFlag/exam1task9c/nbproject/private/ -/1401417015 AngelFlag/exam1task9c/build/ -/1401417015 AngelFlag/exam1_10/nbproject/private/ -/1401417015 AngelFlag/exam1_10/build/ -/1401417015 AngelFlag/2_1/nbproject/private/ -/1401417015 AngelFlag/2_1/build/ -/1401417015 AngelFlag/exam2_2/nbproject/private/ -/1401417015 AngelFlag/exam2_1a/nbproject/private/ -/1401417015 AngelFlag/exam2_1a/build/ -/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/private/ -/1401417015 AngelFlag/Exam2_1bdowhile/build/ -/1401417015 AngelFlag/exam2_1c/nbproject/private/ -/1401417015 AngelFlag/exam2_1c/build/ -/1401417015 AngelFlag/course/nbproject/private/ -/1401417015 AngelFlag/course/build/ -/1401417015 AngelFlag/myWorld/nbproject/private/ -/1401417015 AngelFlag/Mybody/nbproject/private/ -/1401417015 AngelFlag/Mybody/build/ -/1401417015 AngelFlag/upr5_2/nbproject/private/ -/1401417015 AngelFlag/exam2_2/build/ -/1401417015 AngelFlag/exam2task2/nbproject/private/ -/1401417015 AngelFlag/exam2task2/build/ -/1401417015 AngelFlag/exam2_3/nbproject/private/ -/1401417015 AngelFlag/exam2_3/build/ -/1401417015 AngelFlag/exam2_4.1/nbproject/private/ -/1401417015 AngelFlag/exam2_4.1/build/ -/1401417015 AngelFlag/exam2_41a/nbproject/private/ -/1401417015 AngelFlag/exam2_41a/build/ -/1401417015 AngelFlag/exam2_5task5/nbproject/private/ -/1401417015 AngelFlag/exam2_5task5/build/ -/1401417015 AngelFlag/exam2_6/nbproject/private/ -/1401417015 AngelFlag/exam2_6/build/ -/1401417015 AngelFlag/exam2_7menu/nbproject/private/ -/1401417015 AngelFlag/exam2_7menu/build/ -/1401417015 AngelFlag/exam2.8menuA/nbproject/private/ -/1401417015 AngelFlag/exam2.8menuA/build/ -/1401417015 AngelFlag/exam2_9/nbproject/private/ -/1401417015 AngelFlag/exam2_9/build/ -/1401417015 AngelFlag/exam2_10/nbproject/private/ -/1401417015 AngelFlag/exam2_10/build/ -/1401417015 AngelFlag/exam2_11/nbproject/private/ -/1401417015 AngelFlag/exam2_11/build/ -/1401417015 AngelFlag/exam3_1/nbproject/private/ -/1401417015 AngelFlag/exam3_1/build/ -/1401417015 AngelFlag/Human/nbproject/private/ -/1401417015 AngelFlag/Human/build/ -/1401417015 AngelFlag/nfs/nbproject/private/ \ No newline at end of file diff --git a/0000000000_StoyanCheresharov/ArrayList2/build.xml b/0000000000_StoyanCheresharov/ArrayList2/build.xml deleted file mode 100644 index 72913d7..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project ArrayList2. - - - diff --git a/0000000000_StoyanCheresharov/ArrayList2/manifest.mf b/0000000000_StoyanCheresharov/ArrayList2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/ArrayList2/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/ArrayList2/nbproject/build-impl.xml deleted file mode 100644 index 5a318ad..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ArrayList2/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/ArrayList2/nbproject/genfiles.properties deleted file mode 100644 index 7692b60..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=48bad013 -build.xml.script.CRC32=42a30cd0 -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=48bad013 -nbproject/build-impl.xml.script.CRC32=ee603072 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.properties b/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.properties deleted file mode 100644 index 0cfae5e..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/ArrayList2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=arraylist2.ArrayList2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.xml b/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.xml deleted file mode 100644 index 2368655..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - ArrayList2 - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ArrayList2/src/arraylist2/ArrayList2.java b/0000000000_StoyanCheresharov/ArrayList2/src/arraylist2/ArrayList2.java deleted file mode 100644 index 0a415be..0000000 --- a/0000000000_StoyanCheresharov/ArrayList2/src/arraylist2/ArrayList2.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package arraylist2; -import java.util.ArrayList; -import java.util.Iterator; - -/** - * - * @author fmi - */ -public class ArrayList2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - ArrayList listTest = new ArrayList(); - // ArrayList listTest = new ArrayList(); - // You can only add objects, however - listTest.add( "first item" ); - listTest.add( "second item" ); - listTest.add( "third item" ); - listTest.add( 7 ); - - // To go through each item in your ArrayList you can set up something called an Iterator. - Iterator it = listTest.iterator( ); - - while ( it.hasNext( ) ) { - System.out.println( it.next( ) ); - } - -// You can also remove items from an ArrayList. - listTest.remove(2); - - // Or you can use the value on the list: - listTest.remove( "second item" ); - - // to print the whole list - System.out.println("Whole list = " + listTest); - - // System.out.println("Position 1 = " + listTest(1)); - } - -} diff --git a/0000000000_StoyanCheresharov/DataTypes/build.xml b/0000000000_StoyanCheresharov/DataTypes/build.xml deleted file mode 100644 index bcf886f..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project DataTypes. - - - diff --git a/0000000000_StoyanCheresharov/DataTypes/manifest.mf b/0000000000_StoyanCheresharov/DataTypes/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/DataTypes/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/DataTypes/nbproject/build-impl.xml deleted file mode 100644 index 535915d..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/DataTypes/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/DataTypes/nbproject/genfiles.properties deleted file mode 100644 index 6c8c49d..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=9e8d37f9 -build.xml.script.CRC32=1e2538d6 -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=9e8d37f9 -nbproject/build-impl.xml.script.CRC32=f13040d9 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/DataTypes/nbproject/project.properties b/0000000000_StoyanCheresharov/DataTypes/nbproject/project.properties deleted file mode 100644 index b1d26af..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/nbproject/project.properties +++ /dev/null @@ -1,75 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -application.title=DataTypes -application.vendor=fmi -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/DataTypes.jar -dist.javadoc.dir=${dist.dir}/javadoc -endorsed.classpath= -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=datatypes.DataTypes -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/DataTypes/nbproject/project.xml b/0000000000_StoyanCheresharov/DataTypes/nbproject/project.xml deleted file mode 100644 index 1bcd39c..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - DataTypes - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/DataTypes/src/datatypes/DataTypes.java b/0000000000_StoyanCheresharov/DataTypes/src/datatypes/DataTypes.java deleted file mode 100644 index ee1ea68..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/src/datatypes/DataTypes.java +++ /dev/null @@ -1,380 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package datatypes; - -import java.io.IOException; -import java.util.*; - -/** - * - * @author fmi - */ -public class DataTypes { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) throws IOException { - - if (args.length != 0) { - System.out.println(Arrays.toString(args)); - } - // TODO code application logic here - byte myByte = 22; - short myShort = 257; - int myInt = -123; - long myLong = 123L; // 077 0x077 - - float myFloat = 2.34F; - double myDouble = 2.34; // - - char myChar = 'c'; //'\u0000' - boolean myBoolean = false; // true - - // -------------------- Referent ----- - String myName = "Stoyan\\ "; // \n - Object myOtherByte = 3; - - System.out.print(myName); - System.out.println(myName); - - // int ch; - // 1. - // ch = System.in.read(); - // System.out.print((char) ch); - - // while ((ch = System.in.read()) != '\n') { - // System.out.print((char) ch); - // } - - // 2. - // java.util.Scanner input = new java.util.Scanner(System.in); - Scanner input = new Scanner(System.in); - - System.out.print("Please enter your first name: "); - String firstName = input.nextLine(); - System.out.println(firstName); - - double number1 = 3.14; - double number2 = 2.71; - - System.out.println(number1 + number2); - - System.out.printf("%.3f \n", number1 + number2); - -// Old way for reading symbols -// BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); -// String firstString = br.readLine(); -// String lastString = br.readLine(); -// System.out.printf("Hello, %s %s!\n", firstString, lastString); - - - - for(int i = 0; i < 10; i++) - { - for (int j = 0; j < i; j ++) - { - System.out.print('*'); - } - System.out.print("\n"); - } - - Operations(2.32, 45.6); - - // Excersise 2 - // ############################################## 2 ################################### - // 1. Type conversions - long minNumber = 1; - long maxNumber = 1000000; - - // Generates a random number between 1 and 1000000 - long uniqueID = minNumber + (long)(Math.random() * ((maxNumber - minNumber) + 1)); - - // You can cast from one primitive value into another by putting what you want between ( ) - // (byte) (short) (long) (double) - // (float), (boolean) & (char) don't work. - // (char) stays as a number instead of a character - - // You convert from a primitive to a string like this - String stringNumber = Long.toString(maxNumber); - - // Byte.toString(bigByte); Short.toString(bigShort); Integer.toString(bigInt); - // Float.toString(bigFloat); Double.toString(bigDouble); Boolean.toString(trueOrFalse); - - // You convert from a String to a primitive like this - int numberString = Integer.parseInt(stringNumber); - - // parseShort, parseLong, parseByte, parseFloat, parseDouble, parseBoolean - - System.out.println("Unique ID set to: " + uniqueID); - - - // 2) If - String name = ""; - - // userInput.hasNextLine() returns true if a String was entered in the keyboard - if(input.hasNextLine()){ - - // userInput.nextLine() returns the value that was entered at the keyboard - System.out.print("Enter your family name; \n"); - name = input.nextLine(); - - // hasNextInt, hasNextFloat, hasNextDouble, hasNextBoolean, hasNextByte, - // hasNextLong, nextInt, nextDouble, nextFloat, nextBoolean, etc. - - } - - System.out.printf("%s \n", name); - - // 3. if-else - int randomNumber = (int) (Math.random() * 126) + 1; - - char favoriteChar = (char) randomNumber; - - // if then else statement - // > < == != >= <= - if(randomNumber == 32){ - - System.out.println("Favorite character set to: Space"); - - } else if(randomNumber == 10){ - - System.out.println("Favorite character set to: New Line"); - - } else { - - System.out.println("Favorite character set to: " + favoriteChar); - - } - - - // Logical operators - // ! Logical operators : Converts the boolean value to its right to its opposite form ie. true to false - // & : Returns true if boolean value on the right and left are both true (Always evaluates both boolean values) - // && : Returns true if boolean value on the right and left are both true (Stops evaluating after first false) - // | : Returns true if either boolean value on the right or left are true (Always evaluates both boolean values) - // || : Returns true if either boolean value on the right or left are true (Stops evaluating after first true) - // ^ : Returns true if there is 1 true and 1 false boolean value on the right or left - - if((randomNumber > 97) && (randomNumber < 122)){ - - System.out.println("Favorite character is a lowercase letter"); - - } - - if(((randomNumber > 97) && (randomNumber < 122)) || ((randomNumber > 64) && (randomNumber < 91))){ - - System.out.println("Favorite character is a letter"); - - } - - if(!false){ - - System.out.println("I turned false to " + !false); - - } - - // The ternary operator assigns one or another value based on a condition - int whichIsBigger = (50 > randomNumber) ? 50 : randomNumber; - - System.out.println("The biggest number is " + whichIsBigger); - - - // 4. switch - // The switch statement is great for when you have a limited number of values - // and the values are int, byte, or char unless you have Java 7 which allows Strings - switch(randomNumber){ - - case 8 : - System.out.println("Favorite character set to: Backspace"); - break; - - case 9 : - System.out.println("Favorite character set to: Horizontal Tab"); - break; - - case 10 : - case 11 : - case 12 : - System.out.println("Favorite character set to: Something else weird"); - break; - - default : - System.out.println("Favorite character set to: " + favoriteChar); - break; - - } - - - // 5. loops - // System.out.println(1); - // System.out.println(2); - // System.out.println(3); - - // 5.1 while - int i = 1; - while(i < (maxNumber / 2000)){ - - System.out.println(i); - i++; - - // This isn't needed, but if you want to jump out of a loop use break - if(i == (maxNumber/20000)) break; - } - - // 5.2 do - while - int number = 50; - // Do while loops are used when you want to execute the code in the braces at least once - do { - - System.out.println("Guess my number up to 100"); - - // If what they entered isn't a number send a warning - while(!input.hasNextInt()){ - - String numberEntered = input.next(); - System.out.printf("%s is not a number\n", numberEntered); - - } - number = input.nextInt(); - - }while(number != 50); - - System.out.println("Yes the number was 50"); - - - // 5.3 for - for(int i1 = 0; i1 <= 100; i1++){ - - // continue is used to skip 1 iteration of the loop - if(i1 == 90) continue; - - System.out.println(i1); - - } - // 5.4 - int[] numbers = {2, 3, 5, 7, 11, 13, 17, 19}; - for (int i2 : numbers){ - System.out.println(i2); - } - - // An array is a fixed series of boxes that contain multiple values of the same data type - // How you create arrays - // int[] favoriteNumbers; - // favoriteNumbers = new int[20]; - - int[] favoriteNumbers1 = new int[20]; - - favoriteNumbers1[0] = 100; - - String[] stringArray = {"Random", "Words", "Here"}; - - // for(dataType[] varForRow : arrayName) - for(String word : stringArray) - { - System.out.println(word); - } - - // This is a multidimensional array - String[][][] arrayName = { - { - { "000", "more1" }, - { "100", "more2" }, - { "200", "more3" }, - { "300", "more4" } - }, - { - { "010", "more5" }, - { "110", "more6" }, - { "210", "more7" }, - { "310", "more8" } - }, - { - { "020", "more9" }, - { "120", "more10" }, - { "220", "more11" }, - { "320", "more12" } - } - }; - System.out.println(arrayName[2][3][1]); - /* - for(int i = 0; i < arrayName.length; i++) - { - for(int j = 0; j < arrayName[i].length; j++) - { - - for(int k = 0; k < arrayName[i][j].length; k++) - { - System.out.print("| " + arrayName[i][j][k] + " "); - - } - } - - System.out.println("|"); - - } - */ - // You can copy an array (stringToCopy, indexes to copy) - String[] cloneOfArray = Arrays.copyOf(stringArray, 3); - - // You can print out the whole array - System.out.println(Arrays.toString(cloneOfArray)); - - // Returns the index or a negative number - System.out.println(Arrays.binarySearch(cloneOfArray, "Random")); - - Operations(1.0, 2.0); - Operations(4.5, 1, 2, 3, 4); - - System.out.println(factoriel(10)); - - Random randomGen = new Random(); - - randomGen = null; - // coolcsn.System.myMethod myClass = new coolcsn.System.myMethod(); - // 1. non static - // datatypes.Test test = new datatypes.Test(); - // test.getAge(); - - datatypes.Test.getAge(); - - } - - static void Operations(double par1, double par2) - { - System.out.printf("%.2f + %.2f = %.2f", par1, par2, par1 + par2); - } - - static void Operations(double par1, int... elements) - { - System.out.printf("\n %.2f ", par1); - for (int number : elements) { - System.out.println(number); - } - } - - public static int factoriel(int n) - { - if(n <= 1) return 1; - return factoriel(n - 1) * n; - } -} - -/* -import java.util.*; -public class ReadingStringsNewStyle { -public static void main(String[] args) { -Scanner input = new Scanner(System.in); -System.out.print("Please enter your first name: "); -String firstName = input.nextLine(); -System.out.print("Please enter your last name: "); -String lastName = input.nextLine(); -System.out.printf("Hello, %s %s!\n", firstName, lastName); -// input.close(); - Don't close Scanner reading System.in! -} -} -*/ \ No newline at end of file diff --git a/0000000000_StoyanCheresharov/DataTypes/src/datatypes/Test.java b/0000000000_StoyanCheresharov/DataTypes/src/datatypes/Test.java deleted file mode 100644 index 4af5c75..0000000 --- a/0000000000_StoyanCheresharov/DataTypes/src/datatypes/Test.java +++ /dev/null @@ -1,17 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package datatypes; - -/** - * - * @author fmi - */ -public class Test { - public static int getAge() { - return 50; - } -} diff --git a/0000000000_StoyanCheresharov/ErrorHandling/build.xml b/0000000000_StoyanCheresharov/ErrorHandling/build.xml deleted file mode 100644 index 9627503..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project ErrorHandling. - - - diff --git a/0000000000_StoyanCheresharov/ErrorHandling/manifest.mf b/0000000000_StoyanCheresharov/ErrorHandling/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/ErrorHandling/nbproject/build-impl.xml deleted file mode 100644 index f4110ac..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/ErrorHandling/nbproject/genfiles.properties deleted file mode 100644 index bf96744..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=d9cc885d -build.xml.script.CRC32=f948bd3d -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=d9cc885d -nbproject/build-impl.xml.script.CRC32=59487c23 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.properties b/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.properties deleted file mode 100644 index 67090fe..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/ErrorHandling.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=errorhandling.ErrorHandling -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.xml b/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.xml deleted file mode 100644 index 9ab340e..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - ErrorHandling - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ErrorHandling/src/errorhandling/ErrorHandling.java b/0000000000_StoyanCheresharov/ErrorHandling/src/errorhandling/ErrorHandling.java deleted file mode 100644 index ac6067d..0000000 --- a/0000000000_StoyanCheresharov/ErrorHandling/src/errorhandling/ErrorHandling.java +++ /dev/null @@ -1,37 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package errorhandling; - -/** - * - * @author fmi - */ -public class ErrorHandling { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - try { - // int a = 10; - // int b = 0; - // int z = a/b; - - double a = 10; - double b = 0; - double z = a/b; - - System.out.println(z); - } - // catch (Exception err) { // catch all - catch ( ArithmeticException err) { // narrowing down the type of error you expect - System.out.println(err.getMessage()); - } - } - -} diff --git a/0000000000_StoyanCheresharov/JavaApplication1/manifest.mf b/0000000000_StoyanCheresharov/JavaApplication1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/JavaApplication1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/JavaApplication1/src/javaapplication1/JavaApplication1.java b/0000000000_StoyanCheresharov/JavaApplication1/src/javaapplication1/JavaApplication1.java deleted file mode 100644 index 88f6d7d..0000000 --- a/0000000000_StoyanCheresharov/JavaApplication1/src/javaapplication1/JavaApplication1.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package javaapplication1; - -/** - * - * @author fmi - */ -public class JavaApplication1 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} diff --git a/0000000000_StoyanCheresharov/ReadWrite/build.xml b/0000000000_StoyanCheresharov/ReadWrite/build.xml deleted file mode 100644 index 38887a8..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project ReadWrite. - - - diff --git a/0000000000_StoyanCheresharov/ReadWrite/manifest.mf b/0000000000_StoyanCheresharov/ReadWrite/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/ReadWrite/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/ReadWrite/nbproject/build-impl.xml deleted file mode 100644 index 73a11a9..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ReadWrite/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/ReadWrite/nbproject/genfiles.properties deleted file mode 100644 index 393f8a7..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=412c7aed -build.xml.script.CRC32=89341e80 -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=412c7aed -nbproject/build-impl.xml.script.CRC32=61b5bea3 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.properties b/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.properties deleted file mode 100644 index f0e2e41..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/ReadWrite.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=readwrite.ReadWrite -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.xml b/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.xml deleted file mode 100644 index 18eb807..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - ReadWrite - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/ReadWrite/src/readwrite/ReadWrite.java b/0000000000_StoyanCheresharov/ReadWrite/src/readwrite/ReadWrite.java deleted file mode 100644 index 2414cdd..0000000 --- a/0000000000_StoyanCheresharov/ReadWrite/src/readwrite/ReadWrite.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package readwrite; - -import java.io.IOException; -import java.io.FileReader; -import java.io.BufferedReader; -import java.io.FileWriter; -import java.io.PrintWriter; - -/** - * - * @author fmi - */ -public class ReadWrite { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - try - { - writeToFile("C:\\Users\\fmi\\test.txt", "Another line", true ); - - - String[] result = readFile("C:\\Users\\fmi\\test.txt"); - for (String row : result) { - System.out.println(row); - } - - - } - catch(IOException e) - { - System.out.println(e.getMessage()); - } - } - - public static String[] readFile(String path) throws IOException - { - // String path = "c:\\test.txt"; - // This reads bytes from a text file, and each byte is a single character - FileReader fr = new FileReader(path); - - // You can read whole lines of text, rather than single characters. - // To do this, you can hand your FileReader over to something called a BufferedReader - BufferedReader textReader = new BufferedReader(fr); - - // first variant - // int numberOfLines = 3; // hard code the number of lines - // int numberOfLines = 3; // readLines(); - int numberOfLines = readLines(path); - String[ ] textData = new String[numberOfLines]; - - int i; - - for (i=0; i < numberOfLines; i++) { - textData[ i ] = textReader.readLine(); - } - - textReader.close( ); - - return textData; - } - - public static int readLines(String path) throws IOException { - // This reads bytes from a text file, and each byte is a single character - FileReader fr = new FileReader(path); - BufferedReader textReader = new BufferedReader(fr); - - String aLine; - int numberOfLines = 0; - - while ((aLine = textReader.readLine()) != null) { - numberOfLines++; - } - - textReader.close(); - - return numberOfLines; - } - - public static void writeToFile(String path, String textLine, Boolean appendToFile ) throws IOException { - // The FileWriter write bytString pathes - FileWriter write = new FileWriter( path , appendToFile); - // But we can hand the FileWriter plain text with the aid of the PrintWriter class - PrintWriter printLine = new PrintWriter( write ); - - printLine.printf( "%s" + "%n" , textLine); - - // This line closes the text file and frees up any resources it was using - printLine.close( ); - } - -} diff --git a/0000000000_StoyanCheresharov/StackTrace/build.xml b/0000000000_StoyanCheresharov/StackTrace/build.xml deleted file mode 100644 index 05ee8b7..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project StackTrace. - - - diff --git a/0000000000_StoyanCheresharov/StackTrace/manifest.mf b/0000000000_StoyanCheresharov/StackTrace/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/StackTrace/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/StackTrace/nbproject/build-impl.xml deleted file mode 100644 index 03372a5..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StackTrace/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/StackTrace/nbproject/genfiles.properties deleted file mode 100644 index 787a6fb..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=a28d3a65 -build.xml.script.CRC32=42b4018a -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=a28d3a65 -nbproject/build-impl.xml.script.CRC32=eb28ecdf -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/StackTrace/nbproject/project.properties b/0000000000_StoyanCheresharov/StackTrace/nbproject/project.properties deleted file mode 100644 index 81f8a6f..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/StackTrace.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=stacktrace.StackTrace -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/StackTrace/nbproject/project.xml b/0000000000_StoyanCheresharov/StackTrace/nbproject/project.xml deleted file mode 100644 index b705548..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - StackTrace - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StackTrace/src/stacktrace/StackTrace.java b/0000000000_StoyanCheresharov/StackTrace/src/stacktrace/StackTrace.java deleted file mode 100644 index ccab694..0000000 --- a/0000000000_StoyanCheresharov/StackTrace/src/stacktrace/StackTrace.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package stacktrace; - -/** - * - * @author fmi - */ -public class StackTrace { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - System.out.println("Start main"); - m1(); - System.out.println("End main"); - } - - public static void m1() { - System.out.println("second method m1"); - m2(); - } - - public static void m2() { - System.out.println("last method m2"); - try { - // start with this - // int x = 10; - // int y = 0; - // int z = x / y; - - // second step change the code to double - double x = 10.0; - double y = 0.0; - double z = x / y; - System.out.println( z ); - } - // catch ( Exception err ) { // "catch all" - catch ( ArithmeticException err) { // narrowing down the type of error you expect - System.out.println( err.getMessage( ) ); // / by zero, second Infinity - } - } -} diff --git a/0000000000_StoyanCheresharov/StringArrays/build.xml b/0000000000_StoyanCheresharov/StringArrays/build.xml deleted file mode 100644 index dbad8b5..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project StringArrays. - - - diff --git a/0000000000_StoyanCheresharov/StringArrays/manifest.mf b/0000000000_StoyanCheresharov/StringArrays/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/StringArrays/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/StringArrays/nbproject/build-impl.xml deleted file mode 100644 index 4b3a03b..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StringArrays/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/StringArrays/nbproject/genfiles.properties deleted file mode 100644 index bcfe07b..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=fd86cddd -build.xml.script.CRC32=bb9175a2 -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=fd86cddd -nbproject/build-impl.xml.script.CRC32=5c8da1f1 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/StringArrays/nbproject/project.properties b/0000000000_StoyanCheresharov/StringArrays/nbproject/project.properties deleted file mode 100644 index 81eed91..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/StringArrays.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=stringarrays.StringArrays -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/StringArrays/nbproject/project.xml b/0000000000_StoyanCheresharov/StringArrays/nbproject/project.xml deleted file mode 100644 index d086006..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - StringArrays - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StringArrays/src/stringarrays/StringArrays.java b/0000000000_StoyanCheresharov/StringArrays/src/stringarrays/StringArrays.java deleted file mode 100644 index 0e4e43f..0000000 --- a/0000000000_StoyanCheresharov/StringArrays/src/stringarrays/StringArrays.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package stringarrays; - -import java.util.Arrays; - -/** - * - * @author fmi - */ -public class StringArrays { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - // This tells Java to set up a string object with the four characters "B", "i", "l" and another "l". In the Unicode character set, these values are: \u0042, \u0069, \u006c, \u006c. Unicode values are stored as hexadecimals numbers. Capital letters (A to Z) are stored using the values \u0041 to \u005a, while lowercase letters (a to z) are stored using the hexadecimals values \u0061 to \u007a. - String someText = "Bill"; - - String[ ] aryString = new String[5] ; - - aryString[0] = "This"; - aryString[1] = "is"; - aryString[2] = "a"; - aryString[3] = "string"; - aryString[4] = "array"; - - Arrays.sort(aryString); - - // We noted that the word "This" comes first. - // If the array is supposed to be sorted alphabetically, - // however, you would expect the word "a" to come first. - // The reason it doesn't is because lowercase "a" - // has a hexadecimal value of u\0061, which is the decimal - // number 97. But uppercase "T" has a hexadecimal value of u\0054, - // which is the decimal number 84. 84 is lower than 97, so the "T" comes first. - int i; - for ( i=0; i < aryString.length; i++ ) { - System.out.println( aryString[i] ); - } - } - -} diff --git a/0000000000_StoyanCheresharov/StringManipulation/build.xml b/0000000000_StoyanCheresharov/StringManipulation/build.xml deleted file mode 100644 index a527cd2..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project StringManipulation. - - - diff --git a/0000000000_StoyanCheresharov/StringManipulation/manifest.mf b/0000000000_StoyanCheresharov/StringManipulation/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/0000000000_StoyanCheresharov/StringManipulation/nbproject/build-impl.xml b/0000000000_StoyanCheresharov/StringManipulation/nbproject/build-impl.xml deleted file mode 100644 index d8c0520..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StringManipulation/nbproject/genfiles.properties b/0000000000_StoyanCheresharov/StringManipulation/nbproject/genfiles.properties deleted file mode 100644 index aecb4f9..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=701a5f77 -build.xml.script.CRC32=956c972b -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=701a5f77 -nbproject/build-impl.xml.script.CRC32=94a6a1a1 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.properties b/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.properties deleted file mode 100644 index 050627c..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/StringManipulation.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=stringmanipulation.StringManipulation -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.xml b/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.xml deleted file mode 100644 index 06fcd9b..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - StringManipulation - - - - - - - - - diff --git a/0000000000_StoyanCheresharov/StringManipulation/src/stringmanipulation/StringManipulation.java b/0000000000_StoyanCheresharov/StringManipulation/src/stringmanipulation/StringManipulation.java deleted file mode 100644 index 83089f1..0000000 --- a/0000000000_StoyanCheresharov/StringManipulation/src/stringmanipulation/StringManipulation.java +++ /dev/null @@ -1,137 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package stringmanipulation; - -/** - * - * @author fmi - */ -public class StringManipulation { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - /* - // TODO code application logic here - String changeCase = "Text to Change"; - System.out.println(changeCase); - // immutable we produce new strings we don't change the existing - String result; - result = changeCase.toUpperCase(); - System.out.println(result); - - System.out.println( result.toLowerCase( ) ); - */ - /* - int result; - String word1 = "Ape"; - String word2 = "App"; - - result = word1.compareTo(word2); - - if (result < 0) { - System.out.println("word1 is less than word2"); - } - else if (result > 0) { - System.out.println("word1 is more than word2"); - } - else if ( result == 0) { - System.out.println("the same words"); - } - */ - /* - // indexOf - // String ampersand = ".com"; // '@'; // or use a string - char ampersand = '@'; - String email = "stoyan@hotmail.com"; - int result = email.indexOf(ampersand); - - if (result == -1) { - System.out.println("@ is missing in the string"); - } - else { - System.out.println("email is OK result = " + result); - } - // start position - int startPosition = 7; - result = email.indexOf(ampersand, startPosition); - System.out.println("start position result = " + result); - - - // - String dotcom = ".com"; - Boolean ending = email.endsWith( dotcom ); - - if (ending == false ) { - System.out.println( "Invalid Email Address" ); - } - else { - System.out.println( "Email Address OK endsWith .com" ); - } - - Boolean startVal = email.startsWith( dotcom ); - - */ - /* - // Substring - String FullName = "Bill Gates"; - String FirstNameChars = ""; - // This means start grabbing characters at position 0 in the string, eans the position in the string that you want to end at - FirstNameChars = FullName.substring( 0, 2 ); - - System.out.println( FirstNameChars ); - - // Now, Java will start at character two in the string FirstName, and then grab the characters from position 2 right to the end of the string. - String test = FullName.substring( 2 ); - System.out.println( test ); - */ - /* - // !!!!!! == != DON'T DO IT - // You can check two strings to see if they are the same. For this, use the equals method in Java. - String email1 = "stoyan@hotmail.com"; - String email2 = "stoyan@hotmail.com"; - Boolean isMatch = false; - - isMatch = email1.equals(email2); - - System.out.println( isMatch ); - */ - /* - String email = "meme@me.com"; - - char aChar = email.charAt( 4 ); - System.out.println( aChar ); - */ - /* - // replaces strings or chars - String aString = "Did you take you,books"; - String correct = aString.replace("you", "your"); - // aString.replace( '?', '@' ) - System.out.println( correct ); - - - String[] arrayString = aString.split("[ ,.]"); - for (int i = 0; i < arrayString.length; i++) { - System.out.println(arrayString[i]); - } - */ - - /* - String amend = " white space "; - System.out.println(amend); - amend = amend.trim( ); - System.out.println(amend); - */ - - String heading1 = "Exam_Name"; - String heading2 = "Exam_Grade"; - - System.out.printf( "%-15s %15s %n", heading1, heading2); - } - -} diff --git a/1401417003_KalinDimov/NewProject/build.xml b/1401417003_KalinDimov/NewProject/build.xml deleted file mode 100644 index c81476f..0000000 --- a/1401417003_KalinDimov/NewProject/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project NewProject. - - - diff --git a/1401417003_KalinDimov/NewProject/manifest.mf b/1401417003_KalinDimov/NewProject/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417003_KalinDimov/NewProject/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417003_KalinDimov/NewProject/nbproject/build-impl.xml b/1401417003_KalinDimov/NewProject/nbproject/build-impl.xml deleted file mode 100644 index 7916ce9..0000000 --- a/1401417003_KalinDimov/NewProject/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417003_KalinDimov/NewProject/nbproject/genfiles.properties b/1401417003_KalinDimov/NewProject/nbproject/genfiles.properties deleted file mode 100644 index 63c62a1..0000000 --- a/1401417003_KalinDimov/NewProject/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=ec08ae59 -build.xml.script.CRC32=98245e40 -build.xml.stylesheet.CRC32=8064a381@1.74.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=ec08ae59 -nbproject/build-impl.xml.script.CRC32=33b1586f -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.74.2.48 diff --git a/1401417003_KalinDimov/NewProject/nbproject/project.properties b/1401417003_KalinDimov/NewProject/nbproject/project.properties deleted file mode 100644 index 3a321d8..0000000 --- a/1401417003_KalinDimov/NewProject/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/NewProject.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.7 -javac.target=1.7 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=newproject.NewProject -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417003_KalinDimov/NewProject/nbproject/project.xml b/1401417003_KalinDimov/NewProject/nbproject/project.xml deleted file mode 100644 index fbd918c..0000000 --- a/1401417003_KalinDimov/NewProject/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - NewProject - - - - - - - - - diff --git a/1401417003_KalinDimov/NewProject/src/newproject/NewProject.java b/1401417003_KalinDimov/NewProject/src/newproject/NewProject.java deleted file mode 100644 index 9ea4a62..0000000 --- a/1401417003_KalinDimov/NewProject/src/newproject/NewProject.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package newproject; - -/** - * - * @author fmi - */ -public class NewProject { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - System.out.println("Hello Git!"); - } - -} From 710850b26508a7146d5087640630188fd7ce3c36 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 23 Dec 2014 21:34:04 +0200 Subject: [PATCH 34/41] Clean --- .gitattributes | 17 + .gitignore | 2 + 1401417015 AngelFlag/2_1/build.xml | 73 - 1401417015 AngelFlag/2_1/manifest.mf | 3 - .../2_1/nbproject/build-impl.xml | 1413 ----------------- .../2_1/nbproject/genfiles.properties | 8 - .../2_1/nbproject/project.properties | 73 - .../2_1/nbproject/project.xml | 15 - 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 23 - .../Calculator!/nbproject/build-impl.xml | 1413 ----------------- .../Calculator!/nbproject/genfiles.properties | 8 - .../Calculator!/nbproject/project.properties | 73 - .../Calculator!/nbproject/project.xml | 15 - .../Exam2_1bdowhile/build.xml | 73 - .../Exam2_1bdowhile/manifest.mf | 3 - .../Exam2_1bdowhile/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../Exam2_1bdowhile/nbproject/project.xml | 15 - .../src/exam2_1bdowhile/Exam2_1bdowhile.java | 25 - 1401417015 AngelFlag/Fibonacci/build.xml | 73 - 1401417015 AngelFlag/Fibonacci/manifest.mf | 3 - .../Fibonacci/nbproject/build-impl.xml | 1413 ----------------- .../Fibonacci/nbproject/genfiles.properties | 8 - .../Fibonacci/nbproject/project.properties | 73 - .../Fibonacci/nbproject/project.xml | 15 - .../Fibonacci/src/fibonacci/Fibonacci.java | 34 - 1401417015 AngelFlag/HelloWorld.java | 30 - 1401417015 AngelFlag/Human/build.xml | 73 - 1401417015 AngelFlag/Human/manifest.mf | 3 - .../Human/nbproject/build-impl.xml | 1413 ----------------- .../Human/nbproject/genfiles.properties | 8 - .../Human/nbproject/project.properties | 73 - .../Human/nbproject/project.xml | 15 - .../Human/src/human/Human.java | 36 - .../Human/src/human/student.java | 24 - .../Human/src/human/usingHuman.java | 21 - .../Human/src/human/usingStudent.java | 20 - 1401417015 AngelFlag/MyCalculator/build.xml | 73 - 1401417015 AngelFlag/MyCalculator/manifest.mf | 3 - .../MyCalculator/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../MyCalculator/nbproject/project.properties | 73 - .../MyCalculator/nbproject/project.xml | 15 - .../src/MyCalculator/jCalculator.form | 294 ---- .../src/MyCalculator/jCalculator.java | 397 ----- 1401417015 AngelFlag/Mybody/build.xml | 73 - 1401417015 AngelFlag/Mybody/manifest.mf | 3 - .../Mybody/nbproject/build-impl.xml | 1413 ----------------- .../Mybody/nbproject/genfiles.properties | 8 - .../Mybody/nbproject/project.properties | 73 - .../Mybody/nbproject/project.xml | 15 - .../Mybody/src/mybody/Mybody.java | 27 - .../Mybody/src/mybody/Person_1.java | 33 - .../Mybody/src/mybody/person.java | 14 - .../alabala/src/alabala/Alabala.java | 21 - 1401417015 AngelFlag/animals/build.xml | 73 - 1401417015 AngelFlag/animals/manifest.mf | 3 - .../animals/nbproject/build-impl.xml | 1413 ----------------- .../animals/nbproject/genfiles.properties | 8 - .../animals/nbproject/project.properties | 73 - .../animals/nbproject/project.xml | 15 - .../animals/src/animals/Animal.java | 17 - .../animals/src/animals/Animals.java | 31 - .../animals/src/animals/Cat.java | 19 - .../animals/src/animals/Dog.java | 19 - 1401417015 AngelFlag/bigdecimal/build.xml | 73 - 1401417015 AngelFlag/bigdecimal/manifest.mf | 3 - .../bigdecimal/nbproject/build-impl.xml | 1413 ----------------- .../bigdecimal/nbproject/genfiles.properties | 8 - .../bigdecimal/nbproject/project.properties | 73 - .../bigdecimal/nbproject/project.xml | 15 - .../bigdecimal/src/bigdecimal/Bigdecimal.java | 29 - 1401417015 AngelFlag/cat/build.xml | 73 - 1401417015 AngelFlag/cat/manifest.mf | 3 - .../cat/nbproject/build-impl.xml | 1413 ----------------- .../cat/nbproject/genfiles.properties | 8 - .../cat/nbproject/project.properties | 73 - .../cat/nbproject/project.xml | 15 - 1401417015 AngelFlag/cat/src/cat/cat.java | 47 - .../cat/src/cat/catManip.java | 18 - 1401417015 AngelFlag/course/build.xml | 73 - 1401417015 AngelFlag/course/manifest.mf | 3 - .../course/nbproject/build-impl.xml | 1413 ----------------- .../course/nbproject/genfiles.properties | 8 - .../course/nbproject/project.properties | 73 - .../course/nbproject/project.xml | 15 - .../course/src/course/Course.java | 49 - .../course/src/course/Int.java | 14 - .../course/src/course/Person.java | 14 - 1401417015 AngelFlag/datatype/build.xml | 73 - 1401417015 AngelFlag/datatype/manifest.mf | 3 - .../datatype/nbproject/build-impl.xml | 1413 ----------------- .../datatype/nbproject/genfiles.properties | 8 - .../datatype/nbproject/project.properties | 73 - .../datatype/nbproject/project.xml | 15 - .../datatype/src/datatype/Datatype.java | 43 - 1401417015 AngelFlag/exam1Stoyan/build.xml | 73 - 1401417015 AngelFlag/exam1Stoyan/manifest.mf | 3 - .../exam1Stoyan/nbproject/build-impl.xml | 1413 ----------------- .../exam1Stoyan/nbproject/genfiles.properties | 8 - .../exam1Stoyan/nbproject/project.properties | 73 - .../exam1Stoyan/nbproject/project.xml | 15 - .../src/exam1stoyan/Exam1Stoyan.java | 29 - .../exam1Stoyan/src/exam1stoyan/Trapeze.java | 31 - .../src/exam1stoyan/calculateable.java | 16 - .../exam1Stoyan/src/exam1stoyan/circle.java | 35 - 1401417015 AngelFlag/exam1_10/build.xml | 73 - 1401417015 AngelFlag/exam1_10/manifest.mf | 3 - .../exam1_10/nbproject/build-impl.xml | 1413 ----------------- .../exam1_10/nbproject/genfiles.properties | 8 - .../exam1_10/nbproject/project.properties | 73 - .../exam1_10/nbproject/project.xml | 15 - .../exam1_10/src/exam1_10/Exam1_10.java | 44 - 1401417015 AngelFlag/exam1task3.2/build.xml | 73 - 1401417015 AngelFlag/exam1task3.2/manifest.mf | 3 - .../exam1task3.2/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../exam1task3.2/nbproject/project.properties | 73 - .../exam1task3.2/nbproject/project.xml | 15 - .../src/exam1task3/pkg2/Exam1task32.java | 33 - .../exam1task3intTwo/build.xml | 73 - .../exam1task3intTwo/manifest.mf | 3 - .../exam1task3intTwo/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../exam1task3intTwo/nbproject/project.xml | 15 - .../exam1task3inttwo/Exam1task3intTwo.java | 28 - 1401417015 AngelFlag/exam1task4/build.xml | 73 - 1401417015 AngelFlag/exam1task4/manifest.mf | 3 - .../exam1task4/nbproject/build-impl.xml | 1413 ----------------- .../exam1task4/nbproject/genfiles.properties | 8 - .../exam1task4/nbproject/project.properties | 73 - .../exam1task4/nbproject/project.xml | 15 - .../exam1task4/src/exam1task4/Exam1task4.java | 29 - 1401417015 AngelFlag/exam1task5/build.xml | 73 - 1401417015 AngelFlag/exam1task5/manifest.mf | 3 - .../exam1task5/nbproject/build-impl.xml | 1413 ----------------- .../exam1task5/nbproject/genfiles.properties | 8 - .../exam1task5/nbproject/project.properties | 73 - .../exam1task5/nbproject/project.xml | 15 - .../exam1task5/src/exam1task5/Exam1task5.java | 30 - 1401417015 AngelFlag/exam1task6/build.xml | 73 - 1401417015 AngelFlag/exam1task6/manifest.mf | 3 - .../exam1task6/nbproject/build-impl.xml | 1413 ----------------- .../exam1task6/nbproject/genfiles.properties | 8 - .../exam1task6/nbproject/project.properties | 73 - .../exam1task6/nbproject/project.xml | 15 - .../exam1task6/src/exam1task6/Exam1task6.java | 26 - 1401417015 AngelFlag/exam1task7/build.xml | 73 - 1401417015 AngelFlag/exam1task7/manifest.mf | 3 - .../exam1task7/nbproject/build-impl.xml | 1413 ----------------- .../exam1task7/nbproject/genfiles.properties | 8 - .../exam1task7/nbproject/project.properties | 73 - .../exam1task7/nbproject/project.xml | 15 - .../exam1task7/src/exam1task7/Exam1task7.java | 27 - 1401417015 AngelFlag/exam1task8/build.xml | 73 - 1401417015 AngelFlag/exam1task8/manifest.mf | 3 - .../exam1task8/nbproject/build-impl.xml | 1413 ----------------- .../exam1task8/nbproject/genfiles.properties | 8 - .../exam1task8/nbproject/project.properties | 73 - .../exam1task8/nbproject/project.xml | 15 - .../exam1task8/src/exam1task8/Exam1task8.java | 32 - 1401417015 AngelFlag/exam1task8a/build.xml | 73 - 1401417015 AngelFlag/exam1task8a/manifest.mf | 3 - .../exam1task8a/nbproject/build-impl.xml | 1413 ----------------- .../exam1task8a/nbproject/genfiles.properties | 8 - .../exam1task8a/nbproject/project.properties | 73 - .../exam1task8a/nbproject/project.xml | 15 - .../src/exam1task8a/Exam1task8a.java | 32 - 1401417015 AngelFlag/exam1task9/build.xml | 73 - 1401417015 AngelFlag/exam1task9/manifest.mf | 3 - .../exam1task9/nbproject/build-impl.xml | 1413 ----------------- .../exam1task9/nbproject/genfiles.properties | 8 - .../exam1task9/nbproject/project.properties | 73 - .../exam1task9/nbproject/project.xml | 15 - .../exam1task9/src/exam1task9/Exam1task9.java | 36 - 1401417015 AngelFlag/exam1task9a/build.xml | 73 - 1401417015 AngelFlag/exam1task9a/manifest.mf | 3 - .../exam1task9a/nbproject/build-impl.xml | 1413 ----------------- .../exam1task9a/nbproject/genfiles.properties | 8 - .../exam1task9a/nbproject/project.properties | 73 - .../exam1task9a/nbproject/project.xml | 15 - .../src/exam1task9a/Exam1task9a.java | 34 - 1401417015 AngelFlag/exam1task9b/build.xml | 73 - 1401417015 AngelFlag/exam1task9b/manifest.mf | 3 - .../exam1task9b/nbproject/build-impl.xml | 1413 ----------------- .../exam1task9b/nbproject/genfiles.properties | 8 - .../exam1task9b/nbproject/project.properties | 73 - .../exam1task9b/nbproject/project.xml | 15 - .../src/exam1task9b/Exam1task9b.java | 52 - 1401417015 AngelFlag/exam1task9c/build.xml | 73 - 1401417015 AngelFlag/exam1task9c/manifest.mf | 3 - .../exam1task9c/nbproject/build-impl.xml | 1413 ----------------- .../exam1task9c/nbproject/genfiles.properties | 8 - .../exam1task9c/nbproject/project.properties | 73 - .../exam1task9c/nbproject/project.xml | 15 - .../src/exam1task9c/Exam1task9c.java | 35 - 1401417015 AngelFlag/exam2.8menuA/build.xml | 73 - 1401417015 AngelFlag/exam2.8menuA/manifest.mf | 3 - .../exam2.8menuA/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../exam2.8menuA/nbproject/project.properties | 73 - .../exam2.8menuA/nbproject/project.xml | 15 - .../src/exam2/pkg8menua/Exam28menuA.java | 49 - 1401417015 AngelFlag/exam2/build.xml | 73 - 1401417015 AngelFlag/exam2/manifest.mf | 3 - .../exam2/nbproject/build-impl.xml | 1413 ----------------- .../exam2/nbproject/genfiles.properties | 8 - .../exam2/nbproject/project.properties | 73 - .../exam2/nbproject/project.xml | 15 - .../exam2/src/exam2/Bicycle.java | 27 - .../exam2/src/exam2/Exam2.java | 31 - .../exam2/src/exam2/Product.java | 24 - 1401417015 AngelFlag/exam2/src/exam2/Ski.java | 28 - 1401417015 AngelFlag/exam2_10/build.xml | 73 - 1401417015 AngelFlag/exam2_10/manifest.mf | 3 - .../exam2_10/nbproject/build-impl.xml | 1413 ----------------- .../exam2_10/nbproject/genfiles.properties | 8 - .../exam2_10/nbproject/project.properties | 73 - .../exam2_10/nbproject/project.xml | 15 - .../exam2_10/src/exam2_10/Exam2_10.java | 31 - 1401417015 AngelFlag/exam2_11/build.xml | 73 - 1401417015 AngelFlag/exam2_11/manifest.mf | 3 - .../exam2_11/nbproject/build-impl.xml | 1413 ----------------- .../exam2_11/nbproject/genfiles.properties | 8 - .../exam2_11/nbproject/project.properties | 73 - .../exam2_11/nbproject/project.xml | 15 - .../exam2_11/src/exam2_11/Exam2_11.java | 48 - .../exam2_11/src/java/util/input.java | 14 - 1401417015 AngelFlag/exam2_1a/build.xml | 73 - 1401417015 AngelFlag/exam2_1a/manifest.mf | 3 - .../exam2_1a/nbproject/build-impl.xml | 1413 ----------------- .../exam2_1a/nbproject/genfiles.properties | 8 - .../exam2_1a/nbproject/project.properties | 73 - .../exam2_1a/nbproject/project.xml | 15 - .../exam2_1a/src/exam2_1a/Exam2_1a.java | 26 - 1401417015 AngelFlag/exam2_1c/build.xml | 73 - 1401417015 AngelFlag/exam2_1c/manifest.mf | 3 - .../exam2_1c/nbproject/build-impl.xml | 1413 ----------------- .../exam2_1c/nbproject/genfiles.properties | 8 - .../exam2_1c/nbproject/project.properties | 73 - .../exam2_1c/nbproject/project.xml | 15 - .../exam2_1c/src/exam2_1c/Exam2_1c.java | 25 - 1401417015 AngelFlag/exam2_2/build.xml | 73 - 1401417015 AngelFlag/exam2_2/manifest.mf | 3 - .../exam2_2/nbproject/build-impl.xml | 1413 ----------------- .../exam2_2/nbproject/genfiles.properties | 8 - .../exam2_2/nbproject/project.properties | 73 - .../exam2_2/nbproject/project.xml | 15 - .../exam2_2/src/exam2_2/Exam2_2.java | 24 - 1401417015 AngelFlag/exam2_3/build.xml | 73 - 1401417015 AngelFlag/exam2_3/manifest.mf | 3 - .../exam2_3/nbproject/build-impl.xml | 1413 ----------------- .../exam2_3/nbproject/genfiles.properties | 8 - .../exam2_3/nbproject/project.properties | 73 - .../exam2_3/nbproject/project.xml | 15 - .../exam2_3/src/exam2_3/Exam2_3.java | 28 - 1401417015 AngelFlag/exam2_4.1/build.xml | 73 - 1401417015 AngelFlag/exam2_4.1/manifest.mf | 3 - .../exam2_4.1/nbproject/build-impl.xml | 1413 ----------------- .../exam2_4.1/nbproject/genfiles.properties | 8 - .../exam2_4.1/nbproject/project.properties | 73 - .../exam2_4.1/nbproject/project.xml | 15 - .../exam2_4.1/src/exam2_4/pkg1/Exam2_41.java | 30 - 1401417015 AngelFlag/exam2_41a/build.xml | 73 - 1401417015 AngelFlag/exam2_41a/manifest.mf | 3 - .../exam2_41a/nbproject/build-impl.xml | 1413 ----------------- .../exam2_41a/nbproject/genfiles.properties | 8 - .../exam2_41a/nbproject/project.properties | 73 - .../exam2_41a/nbproject/project.xml | 15 - .../exam2_41a/src/exam2_41a/Exam2_41a.java | 31 - 1401417015 AngelFlag/exam2_5task5/build.xml | 73 - 1401417015 AngelFlag/exam2_5task5/manifest.mf | 3 - .../exam2_5task5/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../exam2_5task5/nbproject/project.properties | 73 - .../exam2_5task5/nbproject/project.xml | 15 - .../src/exam2_5task5/Exam2_5task5.java | 43 - 1401417015 AngelFlag/exam2_6/build.xml | 73 - 1401417015 AngelFlag/exam2_6/manifest.mf | 3 - .../exam2_6/nbproject/build-impl.xml | 1413 ----------------- .../exam2_6/nbproject/genfiles.properties | 8 - .../exam2_6/nbproject/project.properties | 73 - .../exam2_6/nbproject/project.xml | 15 - .../exam2_6/src/exam2_6/Exam2_6.java | 40 - 1401417015 AngelFlag/exam2_7menu/build.xml | 73 - 1401417015 AngelFlag/exam2_7menu/manifest.mf | 3 - .../exam2_7menu/nbproject/build-impl.xml | 1413 ----------------- .../exam2_7menu/nbproject/genfiles.properties | 8 - .../exam2_7menu/nbproject/project.properties | 73 - .../exam2_7menu/nbproject/project.xml | 15 - .../src/exam2_7menu/Exam2_7menu.java | 44 - 1401417015 AngelFlag/exam2_9/build.xml | 73 - 1401417015 AngelFlag/exam2_9/manifest.mf | 3 - .../exam2_9/nbproject/build-impl.xml | 1413 ----------------- .../exam2_9/nbproject/genfiles.properties | 8 - .../exam2_9/nbproject/project.properties | 73 - .../exam2_9/nbproject/project.xml | 15 - .../exam2_9/src/exam2_9/Exam2_9.java | 59 - 1401417015 AngelFlag/exam2task2/build.xml | 73 - 1401417015 AngelFlag/exam2task2/manifest.mf | 3 - .../exam2task2/nbproject/build-impl.xml | 1413 ----------------- .../exam2task2/nbproject/genfiles.properties | 8 - .../exam2task2/nbproject/project.properties | 73 - .../exam2task2/nbproject/project.xml | 15 - .../exam2task2/src/exam2task2/Exam2task2.java | 26 - 1401417015 AngelFlag/exam3_1/build.xml | 73 - 1401417015 AngelFlag/exam3_1/manifest.mf | 3 - .../exam3_1/nbproject/build-impl.xml | 1413 ----------------- .../exam3_1/nbproject/genfiles.properties | 8 - .../exam3_1/nbproject/project.properties | 73 - .../exam3_1/nbproject/project.xml | 15 - .../exam3_1/src/exam3_1/Exam3_1.java | 34 - 1401417015 AngelFlag/exam3_2/build.xml | 73 - 1401417015 AngelFlag/exam3_2/manifest.mf | 3 - .../exam3_2/nbproject/build-impl.xml | 1413 ----------------- .../exam3_2/nbproject/genfiles.properties | 8 - .../exam3_2/nbproject/project.properties | 73 - .../exam3_2/nbproject/project.xml | 15 - .../exam3_2/src/exam3_2/Exam3_2.java | 34 - 1401417015 AngelFlag/exam3_3/build.xml | 73 - 1401417015 AngelFlag/exam3_3/manifest.mf | 3 - .../exam3_3/nbproject/build-impl.xml | 1413 ----------------- .../exam3_3/nbproject/genfiles.properties | 8 - .../exam3_3/nbproject/project.properties | 73 - .../exam3_3/nbproject/project.xml | 15 - .../exam3_3/src/exam3_3/Exam3_3.java | 34 - 1401417015 AngelFlag/exam4_1/build.xml | 73 - 1401417015 AngelFlag/exam4_1/manifest.mf | 3 - .../exam4_1/nbproject/build-impl.xml | 1413 ----------------- .../exam4_1/nbproject/genfiles.properties | 8 - .../exam4_1/nbproject/project.properties | 73 - .../exam4_1/nbproject/project.xml | 15 - .../exam4_1/src/exam4_1/Exam4_1.java | 31 - 1401417015 AngelFlag/exam4_2/build.xml | 73 - 1401417015 AngelFlag/exam4_2/manifest.mf | 3 - .../exam4_2/nbproject/build-impl.xml | 1413 ----------------- .../exam4_2/nbproject/genfiles.properties | 8 - .../exam4_2/nbproject/project.properties | 73 - .../exam4_2/nbproject/project.xml | 15 - .../exam4_2/src/exam4_2/Exam4_2.java | 31 - 1401417015 AngelFlag/exam4_3/build.xml | 73 - 1401417015 AngelFlag/exam4_3/manifest.mf | 3 - .../exam4_3/nbproject/build-impl.xml | 1413 ----------------- .../exam4_3/nbproject/genfiles.properties | 8 - .../exam4_3/nbproject/project.properties | 73 - .../exam4_3/nbproject/project.xml | 15 - .../exam4_3/src/exam4_3/Exam4_3.java | 31 - 1401417015 AngelFlag/exam4_5/build.xml | 73 - 1401417015 AngelFlag/exam4_5/manifest.mf | 3 - .../exam4_5/nbproject/build-impl.xml | 1413 ----------------- .../exam4_5/nbproject/genfiles.properties | 8 - .../exam4_5/nbproject/project.properties | 73 - .../exam4_5/nbproject/project.xml | 15 - .../exam4_5/src/exam4_5/Exam4_5.java | 39 - 1401417015 AngelFlag/exam5_1/build.xml | 73 - 1401417015 AngelFlag/exam5_1/manifest.mf | 3 - .../exam5_1/nbproject/build-impl.xml | 1413 ----------------- .../exam5_1/nbproject/genfiles.properties | 8 - .../exam5_1/nbproject/project.properties | 73 - .../exam5_1/nbproject/project.xml | 15 - .../exam5_1/src/exam5_1/Exam5_1.java | 27 - .../exam5_1/src/exam5_1/Person.java | 17 - 1401417015 AngelFlag/exam5_3/build.xml | 73 - 1401417015 AngelFlag/exam5_3/manifest.mf | 3 - .../exam5_3/nbproject/build-impl.xml | 1413 ----------------- .../exam5_3/nbproject/genfiles.properties | 8 - .../exam5_3/nbproject/project.properties | 73 - .../exam5_3/nbproject/project.xml | 15 - .../exam5_3/src/exam5_3/Exam5_3.java | 41 - .../exam5_3/src/exam5_3/Person.java | 56 - 1401417015 AngelFlag/exam5_5/build.xml | 73 - 1401417015 AngelFlag/exam5_5/manifest.mf | 3 - .../exam5_5/nbproject/build-impl.xml | 1413 ----------------- .../exam5_5/nbproject/genfiles.properties | 8 - .../exam5_5/nbproject/project.properties | 73 - .../exam5_5/nbproject/project.xml | 15 - .../exam5_5/src/exam5_5/Exam5_5.java | 25 - .../exam5_5/src/exam5_5/Object.java | 15 - 1401417015 AngelFlag/exam5_8/build.xml | 73 - 1401417015 AngelFlag/exam5_8/manifest.mf | 3 - .../exam5_8/nbproject/build-impl.xml | 1413 ----------------- .../exam5_8/nbproject/genfiles.properties | 8 - .../exam5_8/nbproject/project.properties | 73 - .../exam5_8/nbproject/project.xml | 15 - .../exam5_8/src/exam5_8/Dog.java | 41 - .../exam5_8/src/exam5_8/Exam5_8.java | 27 - .../exam5_8/src/exam5_8/Person.java | 40 - 1401417015 AngelFlag/factorial/build.xml | 73 - 1401417015 AngelFlag/factorial/manifest.mf | 3 - .../factorial/nbproject/build-impl.xml | 1413 ----------------- .../factorial/nbproject/genfiles.properties | 8 - .../factorial/nbproject/project.properties | 73 - .../factorial/nbproject/project.xml | 15 - .../factorial/src/factorial/Factorial.java | 39 - 1401417015 AngelFlag/method/build.xml | 73 - 1401417015 AngelFlag/method/manifest.mf | 3 - .../method/nbproject/build-impl.xml | 1413 ----------------- .../method/nbproject/genfiles.properties | 8 - .../method/nbproject/project.properties | 73 - .../method/nbproject/project.xml | 15 - .../method/src/method/Method.java | 44 - 1401417015 AngelFlag/nfs/build.xml | 73 - 1401417015 AngelFlag/nfs/manifest.mf | 3 - .../nfs/nbproject/build-impl.xml | 1413 ----------------- .../nfs/nbproject/genfiles.properties | 8 - .../nfs/nbproject/project.properties | 73 - .../nfs/nbproject/project.xml | 15 - 1401417015 AngelFlag/nfs/src/Vehicle.java | 13 - .../nfs/src/nfs/Drivable.java | 19 - 1401417015 AngelFlag/nfs/src/nfs/Nfs.java | 21 - .../nfs/src/nfs/SportCar.java | 29 - 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java | 26 - 1401417015 AngelFlag/oop1_MyWorld/build.xml | 73 - 1401417015 AngelFlag/oop1_MyWorld/manifest.mf | 3 - .../oop1_MyWorld/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../oop1_MyWorld/nbproject/project.properties | 73 - .../oop1_MyWorld/nbproject/project.xml | 15 - .../src/oop1_myworld/Athlete.java | 14 - .../src/oop1_myworld/Introduceable.java | 17 - .../src/oop1_myworld/Oop1_MyWorld.java | 47 - .../oop1_MyWorld/src/oop1_myworld/Person.java | 51 - .../src/oop1_myworld/Student.java | 51 - 1401417015 AngelFlag/project1_1.rar | Bin 14780 -> 0 bytes 1401417015 AngelFlag/project1_sra/build.xml | 73 - 1401417015 AngelFlag/project1_sra/manifest.mf | 3 - .../project1_sra/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../project1_sra/nbproject/project.properties | 73 - .../project1_sra/nbproject/project.xml | 15 - .../src/project1_sra/Project1_sra.java | 61 - .../project2_arrayS#@rT/build.xml | 73 - .../project2_arrayS#@rT/manifest.mf | 3 - .../nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../project2_arrayS#@rT/nbproject/project.xml | 15 - .../project2_arrays/rt/Project2_arraySRT.java | 156 -- 1401417015 AngelFlag/project2_final/build.xml | 73 - .../project2_final/manifest.mf | 3 - .../project2_final/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../project2_final/nbproject/project.xml | 15 - .../src/project2_final/Project2_final.java | 69 - 1401417015 AngelFlag/projecteasygo/build.xml | 73 - .../projecteasygo/manifest.mf | 3 - .../projecteasygo/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../projecteasygo/nbproject/project.xml | 15 - .../src/projecteasygo/Projecteasygo.java | 38 - 1401417015 AngelFlag/test/build.xml | 73 - 1401417015 AngelFlag/test/manifest.mf | 3 - .../test/nbproject/build-impl.xml | 1413 ----------------- .../test/nbproject/genfiles.properties | 8 - .../test/nbproject/project.properties | 73 - .../test/nbproject/project.xml | 15 - 1401417015 AngelFlag/test/src/test/Test.java | 364 ----- 1401417015 AngelFlag/tutorial/build.xml | 73 - 1401417015 AngelFlag/tutorial/manifest.mf | 3 - .../tutorial/nbproject/build-impl.xml | 1413 ----------------- .../tutorial/nbproject/genfiles.properties | 8 - .../tutorial/nbproject/project.properties | 73 - .../tutorial/nbproject/project.xml | 15 - .../tutorial/src/tutorial/Tutorial.java | 61 - 1401417015 AngelFlag/upr1zad2intI=5/build.xml | 73 - .../upr1zad2intI=5/manifest.mf | 3 - .../upr1zad2intI=5/nbproject/build-impl.xml | 1413 ----------------- .../nbproject/genfiles.properties | 8 - .../nbproject/project.properties | 73 - .../upr1zad2intI=5/nbproject/project.xml | 15 - .../src/upr1zad2inti/pkg5/Upr1zad2intI5.java | 22 - 1401417015 AngelFlag/upr5_2/build.xml | 73 - 1401417015 AngelFlag/upr5_2/manifest.mf | 3 - .../upr5_2/nbproject/build-impl.xml | 1413 ----------------- .../upr5_2/nbproject/genfiles.properties | 8 - .../upr5_2/nbproject/project.properties | 73 - .../upr5_2/nbproject/project.xml | 15 - .../upr5_2/src/upr5_2/Person.java | 14 - .../upr5_2/src/upr5_2/Upr5_2.java | 21 - 1401417015 AngelFlag/zad1/build.xml | 73 - 1401417015 AngelFlag/zad1/manifest.mf | 3 - .../zad1/nbproject/build-impl.xml | 1413 ----------------- .../zad1/nbproject/genfiles.properties | 8 - .../zad1/nbproject/project.properties | 73 - .../zad1/nbproject/project.xml | 15 - 1401417015 AngelFlag/zad1/src/zad1/Zad1.java | 27 - .../zad1/src/zad1/random.java | 62 - 491 files changed, 19 insertions(+), 107214 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore delete mode 100644 1401417015 AngelFlag/2_1/build.xml delete mode 100644 1401417015 AngelFlag/2_1/manifest.mf delete mode 100644 1401417015 AngelFlag/2_1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/2_1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/2_1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/2_1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java delete mode 100644 1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/Calculator!/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/Calculator!/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/build.xml delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java delete mode 100644 1401417015 AngelFlag/Fibonacci/build.xml delete mode 100644 1401417015 AngelFlag/Fibonacci/manifest.mf delete mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/Fibonacci/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java delete mode 100644 1401417015 AngelFlag/HelloWorld.java delete mode 100644 1401417015 AngelFlag/Human/build.xml delete mode 100644 1401417015 AngelFlag/Human/manifest.mf delete mode 100644 1401417015 AngelFlag/Human/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/Human/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/Human/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/Human/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/Human/src/human/Human.java delete mode 100644 1401417015 AngelFlag/Human/src/human/student.java delete mode 100644 1401417015 AngelFlag/Human/src/human/usingHuman.java delete mode 100644 1401417015 AngelFlag/Human/src/human/usingStudent.java delete mode 100644 1401417015 AngelFlag/MyCalculator/build.xml delete mode 100644 1401417015 AngelFlag/MyCalculator/manifest.mf delete mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/MyCalculator/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form delete mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java delete mode 100644 1401417015 AngelFlag/Mybody/build.xml delete mode 100644 1401417015 AngelFlag/Mybody/manifest.mf delete mode 100644 1401417015 AngelFlag/Mybody/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/Mybody/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/Mybody/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/Mybody/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Mybody.java delete mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Person_1.java delete mode 100644 1401417015 AngelFlag/Mybody/src/mybody/person.java delete mode 100644 1401417015 AngelFlag/alabala/src/alabala/Alabala.java delete mode 100644 1401417015 AngelFlag/animals/build.xml delete mode 100644 1401417015 AngelFlag/animals/manifest.mf delete mode 100644 1401417015 AngelFlag/animals/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/animals/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/animals/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/animals/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/animals/src/animals/Animal.java delete mode 100644 1401417015 AngelFlag/animals/src/animals/Animals.java delete mode 100644 1401417015 AngelFlag/animals/src/animals/Cat.java delete mode 100644 1401417015 AngelFlag/animals/src/animals/Dog.java delete mode 100644 1401417015 AngelFlag/bigdecimal/build.xml delete mode 100644 1401417015 AngelFlag/bigdecimal/manifest.mf delete mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/bigdecimal/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java delete mode 100644 1401417015 AngelFlag/cat/build.xml delete mode 100644 1401417015 AngelFlag/cat/manifest.mf delete mode 100644 1401417015 AngelFlag/cat/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/cat/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/cat/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/cat/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/cat/src/cat/cat.java delete mode 100644 1401417015 AngelFlag/cat/src/cat/catManip.java delete mode 100644 1401417015 AngelFlag/course/build.xml delete mode 100644 1401417015 AngelFlag/course/manifest.mf delete mode 100644 1401417015 AngelFlag/course/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/course/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/course/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/course/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/course/src/course/Course.java delete mode 100644 1401417015 AngelFlag/course/src/course/Int.java delete mode 100644 1401417015 AngelFlag/course/src/course/Person.java delete mode 100644 1401417015 AngelFlag/datatype/build.xml delete mode 100644 1401417015 AngelFlag/datatype/manifest.mf delete mode 100644 1401417015 AngelFlag/datatype/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/datatype/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/datatype/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/datatype/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/datatype/src/datatype/Datatype.java delete mode 100644 1401417015 AngelFlag/exam1Stoyan/build.xml delete mode 100644 1401417015 AngelFlag/exam1Stoyan/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java delete mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java delete mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java delete mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java delete mode 100644 1401417015 AngelFlag/exam1_10/build.xml delete mode 100644 1401417015 AngelFlag/exam1_10/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1_10/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java delete mode 100644 1401417015 AngelFlag/exam1task3.2/build.xml delete mode 100644 1401417015 AngelFlag/exam1task3.2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task3.2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/build.xml delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java delete mode 100644 1401417015 AngelFlag/exam1task4/build.xml delete mode 100644 1401417015 AngelFlag/exam1task4/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task4/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java delete mode 100644 1401417015 AngelFlag/exam1task5/build.xml delete mode 100644 1401417015 AngelFlag/exam1task5/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task5/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java delete mode 100644 1401417015 AngelFlag/exam1task6/build.xml delete mode 100644 1401417015 AngelFlag/exam1task6/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task6/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java delete mode 100644 1401417015 AngelFlag/exam1task7/build.xml delete mode 100644 1401417015 AngelFlag/exam1task7/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task7/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java delete mode 100644 1401417015 AngelFlag/exam1task8/build.xml delete mode 100644 1401417015 AngelFlag/exam1task8/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task8/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java delete mode 100644 1401417015 AngelFlag/exam1task8a/build.xml delete mode 100644 1401417015 AngelFlag/exam1task8a/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task8a/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java delete mode 100644 1401417015 AngelFlag/exam1task9/build.xml delete mode 100644 1401417015 AngelFlag/exam1task9/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task9/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java delete mode 100644 1401417015 AngelFlag/exam1task9a/build.xml delete mode 100644 1401417015 AngelFlag/exam1task9a/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task9a/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java delete mode 100644 1401417015 AngelFlag/exam1task9b/build.xml delete mode 100644 1401417015 AngelFlag/exam1task9b/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task9b/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java delete mode 100644 1401417015 AngelFlag/exam1task9c/build.xml delete mode 100644 1401417015 AngelFlag/exam1task9c/manifest.mf delete mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam1task9c/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java delete mode 100644 1401417015 AngelFlag/exam2.8menuA/build.xml delete mode 100644 1401417015 AngelFlag/exam2.8menuA/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java delete mode 100644 1401417015 AngelFlag/exam2/build.xml delete mode 100644 1401417015 AngelFlag/exam2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2/src/exam2/Bicycle.java delete mode 100644 1401417015 AngelFlag/exam2/src/exam2/Exam2.java delete mode 100644 1401417015 AngelFlag/exam2/src/exam2/Product.java delete mode 100644 1401417015 AngelFlag/exam2/src/exam2/Ski.java delete mode 100644 1401417015 AngelFlag/exam2_10/build.xml delete mode 100644 1401417015 AngelFlag/exam2_10/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_10/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_10/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java delete mode 100644 1401417015 AngelFlag/exam2_11/build.xml delete mode 100644 1401417015 AngelFlag/exam2_11/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_11/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_11/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java delete mode 100644 1401417015 AngelFlag/exam2_11/src/java/util/input.java delete mode 100644 1401417015 AngelFlag/exam2_1a/build.xml delete mode 100644 1401417015 AngelFlag/exam2_1a/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_1a/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java delete mode 100644 1401417015 AngelFlag/exam2_1c/build.xml delete mode 100644 1401417015 AngelFlag/exam2_1c/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_1c/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java delete mode 100644 1401417015 AngelFlag/exam2_2/build.xml delete mode 100644 1401417015 AngelFlag/exam2_2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java delete mode 100644 1401417015 AngelFlag/exam2_3/build.xml delete mode 100644 1401417015 AngelFlag/exam2_3/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_3/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_3/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java delete mode 100644 1401417015 AngelFlag/exam2_4.1/build.xml delete mode 100644 1401417015 AngelFlag/exam2_4.1/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_4.1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java delete mode 100644 1401417015 AngelFlag/exam2_41a/build.xml delete mode 100644 1401417015 AngelFlag/exam2_41a/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_41a/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java delete mode 100644 1401417015 AngelFlag/exam2_5task5/build.xml delete mode 100644 1401417015 AngelFlag/exam2_5task5/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_5task5/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java delete mode 100644 1401417015 AngelFlag/exam2_6/build.xml delete mode 100644 1401417015 AngelFlag/exam2_6/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_6/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_6/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java delete mode 100644 1401417015 AngelFlag/exam2_7menu/build.xml delete mode 100644 1401417015 AngelFlag/exam2_7menu/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_7menu/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java delete mode 100644 1401417015 AngelFlag/exam2_9/build.xml delete mode 100644 1401417015 AngelFlag/exam2_9/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2_9/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2_9/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java delete mode 100644 1401417015 AngelFlag/exam2task2/build.xml delete mode 100644 1401417015 AngelFlag/exam2task2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam2task2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam2task2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java delete mode 100644 1401417015 AngelFlag/exam3_1/build.xml delete mode 100644 1401417015 AngelFlag/exam3_1/manifest.mf delete mode 100644 1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam3_1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam3_1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java delete mode 100644 1401417015 AngelFlag/exam3_2/build.xml delete mode 100644 1401417015 AngelFlag/exam3_2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam3_2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam3_2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java delete mode 100644 1401417015 AngelFlag/exam3_3/build.xml delete mode 100644 1401417015 AngelFlag/exam3_3/manifest.mf delete mode 100644 1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam3_3/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam3_3/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java delete mode 100644 1401417015 AngelFlag/exam4_1/build.xml delete mode 100644 1401417015 AngelFlag/exam4_1/manifest.mf delete mode 100644 1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam4_1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam4_1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java delete mode 100644 1401417015 AngelFlag/exam4_2/build.xml delete mode 100644 1401417015 AngelFlag/exam4_2/manifest.mf delete mode 100644 1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam4_2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam4_2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java delete mode 100644 1401417015 AngelFlag/exam4_3/build.xml delete mode 100644 1401417015 AngelFlag/exam4_3/manifest.mf delete mode 100644 1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam4_3/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam4_3/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java delete mode 100644 1401417015 AngelFlag/exam4_5/build.xml delete mode 100644 1401417015 AngelFlag/exam4_5/manifest.mf delete mode 100644 1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam4_5/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam4_5/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java delete mode 100644 1401417015 AngelFlag/exam5_1/build.xml delete mode 100644 1401417015 AngelFlag/exam5_1/manifest.mf delete mode 100644 1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam5_1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam5_1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java delete mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java delete mode 100644 1401417015 AngelFlag/exam5_3/build.xml delete mode 100644 1401417015 AngelFlag/exam5_3/manifest.mf delete mode 100644 1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam5_3/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam5_3/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java delete mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java delete mode 100644 1401417015 AngelFlag/exam5_5/build.xml delete mode 100644 1401417015 AngelFlag/exam5_5/manifest.mf delete mode 100644 1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam5_5/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam5_5/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java delete mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java delete mode 100644 1401417015 AngelFlag/exam5_8/build.xml delete mode 100644 1401417015 AngelFlag/exam5_8/manifest.mf delete mode 100644 1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/exam5_8/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/exam5_8/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java delete mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java delete mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java delete mode 100644 1401417015 AngelFlag/factorial/build.xml delete mode 100644 1401417015 AngelFlag/factorial/manifest.mf delete mode 100644 1401417015 AngelFlag/factorial/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/factorial/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/factorial/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/factorial/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/factorial/src/factorial/Factorial.java delete mode 100644 1401417015 AngelFlag/method/build.xml delete mode 100644 1401417015 AngelFlag/method/manifest.mf delete mode 100644 1401417015 AngelFlag/method/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/method/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/method/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/method/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/method/src/method/Method.java delete mode 100644 1401417015 AngelFlag/nfs/build.xml delete mode 100644 1401417015 AngelFlag/nfs/manifest.mf delete mode 100644 1401417015 AngelFlag/nfs/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/nfs/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/nfs/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/nfs/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/nfs/src/Vehicle.java delete mode 100644 1401417015 AngelFlag/nfs/src/nfs/Drivable.java delete mode 100644 1401417015 AngelFlag/nfs/src/nfs/Nfs.java delete mode 100644 1401417015 AngelFlag/nfs/src/nfs/SportCar.java delete mode 100644 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/build.xml delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/manifest.mf delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java delete mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java delete mode 100644 1401417015 AngelFlag/project1_1.rar delete mode 100644 1401417015 AngelFlag/project1_sra/build.xml delete mode 100644 1401417015 AngelFlag/project1_sra/manifest.mf delete mode 100644 1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/project1_sra/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/build.xml delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java delete mode 100644 1401417015 AngelFlag/project2_final/build.xml delete mode 100644 1401417015 AngelFlag/project2_final/manifest.mf delete mode 100644 1401417015 AngelFlag/project2_final/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/project2_final/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/project2_final/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/project2_final/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java delete mode 100644 1401417015 AngelFlag/projecteasygo/build.xml delete mode 100644 1401417015 AngelFlag/projecteasygo/manifest.mf delete mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/projecteasygo/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java delete mode 100644 1401417015 AngelFlag/test/build.xml delete mode 100644 1401417015 AngelFlag/test/manifest.mf delete mode 100644 1401417015 AngelFlag/test/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/test/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/test/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/test/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/test/src/test/Test.java delete mode 100644 1401417015 AngelFlag/tutorial/build.xml delete mode 100644 1401417015 AngelFlag/tutorial/manifest.mf delete mode 100644 1401417015 AngelFlag/tutorial/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/tutorial/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/tutorial/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/tutorial/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/build.xml delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/manifest.mf delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java delete mode 100644 1401417015 AngelFlag/upr5_2/build.xml delete mode 100644 1401417015 AngelFlag/upr5_2/manifest.mf delete mode 100644 1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/upr5_2/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/upr5_2/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java delete mode 100644 1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java delete mode 100644 1401417015 AngelFlag/zad1/build.xml delete mode 100644 1401417015 AngelFlag/zad1/manifest.mf delete mode 100644 1401417015 AngelFlag/zad1/nbproject/build-impl.xml delete mode 100644 1401417015 AngelFlag/zad1/nbproject/genfiles.properties delete mode 100644 1401417015 AngelFlag/zad1/nbproject/project.properties delete mode 100644 1401417015 AngelFlag/zad1/nbproject/project.xml delete mode 100644 1401417015 AngelFlag/zad1/src/zad1/Zad1.java delete mode 100644 1401417015 AngelFlag/zad1/src/zad1/random.java diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bdb0cab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..99b0d51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/1401417015 AngelFlag/*/nbproject/ +/1401417015 AngelFlag/*/build/ \ No newline at end of file diff --git a/1401417015 AngelFlag/2_1/build.xml b/1401417015 AngelFlag/2_1/build.xml deleted file mode 100644 index e38caea..0000000 --- a/1401417015 AngelFlag/2_1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project 2_1. - - - diff --git a/1401417015 AngelFlag/2_1/manifest.mf b/1401417015 AngelFlag/2_1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/2_1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/2_1/nbproject/build-impl.xml b/1401417015 AngelFlag/2_1/nbproject/build-impl.xml deleted file mode 100644 index 7d875f2..0000000 --- a/1401417015 AngelFlag/2_1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/2_1/nbproject/genfiles.properties b/1401417015 AngelFlag/2_1/nbproject/genfiles.properties deleted file mode 100644 index 2dde524..0000000 --- a/1401417015 AngelFlag/2_1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=acce3b89 -build.xml.script.CRC32=aa102bea -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=acce3b89 -nbproject/build-impl.xml.script.CRC32=5e0a35e6 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/2_1/nbproject/project.properties b/1401417015 AngelFlag/2_1/nbproject/project.properties deleted file mode 100644 index 5eb4c7f..0000000 --- a/1401417015 AngelFlag/2_1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/2_1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=pkg2_1.Main -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/2_1/nbproject/project.xml b/1401417015 AngelFlag/2_1/nbproject/project.xml deleted file mode 100644 index 9e089d7..0000000 --- a/1401417015 AngelFlag/2_1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - 2_1 - - - - - - - - - diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java deleted file mode 100644 index 4e66417..0000000 --- a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package pkg2_1; -/** - * - * @author THE NET - */ -public class Main { - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int i=1; - while(i<15) - { - System.out.println(i); - i= i+1; -// TODO code application logic here - } -} diff --git a/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml b/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml deleted file mode 100644 index 423e066..0000000 --- a/1401417015 AngelFlag/Calculator!/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties b/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties deleted file mode 100644 index fa6c3b9..0000000 --- a/1401417015 AngelFlag/Calculator!/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=39ea1f5e -build.xml.script.CRC32=f7aaae06 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=39ea1f5e -nbproject/build-impl.xml.script.CRC32=e6890fbd -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Calculator!/nbproject/project.properties b/1401417015 AngelFlag/Calculator!/nbproject/project.properties deleted file mode 100644 index 75add7b..0000000 --- a/1401417015 AngelFlag/Calculator!/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Calculator_.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class= -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/Calculator!/nbproject/project.xml b/1401417015 AngelFlag/Calculator!/nbproject/project.xml deleted file mode 100644 index 6ed1f13..0000000 --- a/1401417015 AngelFlag/Calculator!/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Calculator! - - - - - - - - - diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/build.xml b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml deleted file mode 100644 index c564efc..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project Exam2_1bdowhile. - - - diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml deleted file mode 100644 index 8c3df33..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties deleted file mode 100644 index 43ca841..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=c353d51d -build.xml.script.CRC32=e3b46deb -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=c353d51d -nbproject/build-impl.xml.script.CRC32=c2df34a9 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties deleted file mode 100644 index 50f8641..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Exam2_1bdowhile.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_1bdowhile.Exam2_1bdowhile -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml b/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml deleted file mode 100644 index 38e54e8..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Exam2_1bdowhile - - - - - - - - - diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java deleted file mode 100644 index dae7e03..0000000 --- a/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_1bdowhile; - -/** - * - * @author THE NET - */ -public class Exam2_1bdowhile { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int i = 1; - do{System.out.println(i); - i=i+1; - } - while (i<11); - } - -} diff --git a/1401417015 AngelFlag/Fibonacci/build.xml b/1401417015 AngelFlag/Fibonacci/build.xml deleted file mode 100644 index ac8705f..0000000 --- a/1401417015 AngelFlag/Fibonacci/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project Fibonacci. - - - diff --git a/1401417015 AngelFlag/Fibonacci/manifest.mf b/1401417015 AngelFlag/Fibonacci/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/Fibonacci/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml b/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml deleted file mode 100644 index 90b63c2..0000000 --- a/1401417015 AngelFlag/Fibonacci/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties b/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties deleted file mode 100644 index d21c6a3..0000000 --- a/1401417015 AngelFlag/Fibonacci/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=b3a6f42f -build.xml.script.CRC32=1fd88a97 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=b3a6f42f -nbproject/build-impl.xml.script.CRC32=1fa015b8 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/project.properties b/1401417015 AngelFlag/Fibonacci/nbproject/project.properties deleted file mode 100644 index aaebd87..0000000 --- a/1401417015 AngelFlag/Fibonacci/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Fibonacci.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=fibonacci.Fibonacci -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/Fibonacci/nbproject/project.xml b/1401417015 AngelFlag/Fibonacci/nbproject/project.xml deleted file mode 100644 index 0e5a402..0000000 --- a/1401417015 AngelFlag/Fibonacci/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Fibonacci - - - - - - - - - diff --git a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java deleted file mode 100644 index 21f7af3..0000000 --- a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package fibonacci; -import java.util.*; - -/** - * - * @author THE NET - */ -public class Fibonacci { -//using formula from GOD KNOWS WHERE......BUT IT WORKSSSSS - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - Scanner input = new Scanner(System.in); - System.out.print("enter number:"); - int number = input.nextInt(); - int count=1; - int c =1,b=1,a=0; - while(count <= number){ - c= b+a; - System.out.print(c); - a = b; - b = c; - count++; - } - - } -} diff --git a/1401417015 AngelFlag/HelloWorld.java b/1401417015 AngelFlag/HelloWorld.java deleted file mode 100644 index bebaa62..0000000 --- a/1401417015 AngelFlag/HelloWorld.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package hello.world; - -import static java.lang.Compiler.command; - -/** - * - * @author Flag - */ -class HelloWorld { - - public static void main(String[] args) { - System.out.println("Hello world") ; - System.out.println("Hello Angel"); - printLogo(); - } - public static void printLogo(){ - System.out.println("Sun Microsystems"); - System.out.println("www.sun.com"); - angelBy(); - } - public static void angelBy(){ - System.out.println("NameAb"); - - } -} diff --git a/1401417015 AngelFlag/Human/build.xml b/1401417015 AngelFlag/Human/build.xml deleted file mode 100644 index ee62f1f..0000000 --- a/1401417015 AngelFlag/Human/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project Human. - - - diff --git a/1401417015 AngelFlag/Human/manifest.mf b/1401417015 AngelFlag/Human/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/Human/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/Human/nbproject/build-impl.xml b/1401417015 AngelFlag/Human/nbproject/build-impl.xml deleted file mode 100644 index 546f968..0000000 --- a/1401417015 AngelFlag/Human/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/Human/nbproject/genfiles.properties b/1401417015 AngelFlag/Human/nbproject/genfiles.properties deleted file mode 100644 index d674ee6..0000000 --- a/1401417015 AngelFlag/Human/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=08fab195 -build.xml.script.CRC32=6c4477ab -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=08fab195 -nbproject/build-impl.xml.script.CRC32=fc752e67 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Human/nbproject/project.properties b/1401417015 AngelFlag/Human/nbproject/project.properties deleted file mode 100644 index cf1045f..0000000 --- a/1401417015 AngelFlag/Human/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Human.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=human.usingHuman -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/Human/nbproject/project.xml b/1401417015 AngelFlag/Human/nbproject/project.xml deleted file mode 100644 index f7dfc3b..0000000 --- a/1401417015 AngelFlag/Human/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Human - - - - - - - - - diff --git a/1401417015 AngelFlag/Human/src/human/Human.java b/1401417015 AngelFlag/Human/src/human/Human.java deleted file mode 100644 index f49d25a..0000000 --- a/1401417015 AngelFlag/Human/src/human/Human.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package human; - -/** - * - * @author THE NET - */ -public class Human { - String Name; - int Age; - - public Human(String name,int age) - { - this.Name = name;//Name = name; - this.Age = age; //Age = age; - } - @Override - public String toString() - { - return "My name is " + Name +" and I am " + Age + " years old"; - } - /** - * @param args the command line arguments - */ - //public static void main(String[] args) { - // Human metod = new Human("Ivan",20); - // System.out.println(metod.Name + "-" + metod.Age); - // System.out.println(metod.toString()); - // System.out.println(metod); - } - -//} diff --git a/1401417015 AngelFlag/Human/src/human/student.java b/1401417015 AngelFlag/Human/src/human/student.java deleted file mode 100644 index 51cc82b..0000000 --- a/1401417015 AngelFlag/Human/src/human/student.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package human; - -/** - * - * @author THE NET - */ -public class student extends Human{ - String Fi; - - public student(String name, int age, String Fi) { - super(name, age); - this.Fi = Fi; - } - public String toString(){ - - return super.toString() + " Той е студент с Fi: " + Fi; - - } -} diff --git a/1401417015 AngelFlag/Human/src/human/usingHuman.java b/1401417015 AngelFlag/Human/src/human/usingHuman.java deleted file mode 100644 index bcc6c07..0000000 --- a/1401417015 AngelFlag/Human/src/human/usingHuman.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package human; - -/** - * - * @author THE NET - */ -public class usingHuman { - - public static void main(String[] args) { - Human metod = new Human("Ivan",20); - System.out.println(metod.Name + "-" + metod.Age); - System.out.println(metod.toString()); - System.out.println(metod); - } -} - diff --git a/1401417015 AngelFlag/Human/src/human/usingStudent.java b/1401417015 AngelFlag/Human/src/human/usingStudent.java deleted file mode 100644 index fdc7afd..0000000 --- a/1401417015 AngelFlag/Human/src/human/usingStudent.java +++ /dev/null @@ -1,20 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package human; - -/** - * - * @author THE NET - */ -public class usingStudent { - public static void main(String[] args) { - student с = new student("Иван", 20, "123456"); - System.out.println(с.Name + " - " + с.Age + " - " + с.Fi); - System.out.println(с); - - } - -} diff --git a/1401417015 AngelFlag/MyCalculator/build.xml b/1401417015 AngelFlag/MyCalculator/build.xml deleted file mode 100644 index 8ac28c5..0000000 --- a/1401417015 AngelFlag/MyCalculator/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project MyCalculator. - - - diff --git a/1401417015 AngelFlag/MyCalculator/manifest.mf b/1401417015 AngelFlag/MyCalculator/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/MyCalculator/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml b/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml deleted file mode 100644 index a7dbdeb..0000000 --- a/1401417015 AngelFlag/MyCalculator/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties b/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties deleted file mode 100644 index af5fc64..0000000 --- a/1401417015 AngelFlag/MyCalculator/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=2cfd1193 -build.xml.script.CRC32=b09b2716 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=2cfd1193 -nbproject/build-impl.xml.script.CRC32=e91239b2 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/project.properties b/1401417015 AngelFlag/MyCalculator/nbproject/project.properties deleted file mode 100644 index 117fef0..0000000 --- a/1401417015 AngelFlag/MyCalculator/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/MyCalculator.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=MyCalculator.jCalculator -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/MyCalculator/nbproject/project.xml b/1401417015 AngelFlag/MyCalculator/nbproject/project.xml deleted file mode 100644 index 39dfed5..0000000 --- a/1401417015 AngelFlag/MyCalculator/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - MyCalculator - - - - - - - - - diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form deleted file mode 100644 index 44affc1..0000000 --- a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form +++ /dev/null @@ -1,294 +0,0 @@ - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java deleted file mode 100644 index e681beb..0000000 --- a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java +++ /dev/null @@ -1,397 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package MyCalculator; - -/** - * - * @author THE NET - */ -public class jCalculator extends javax.swing.JFrame { - - private double total = 0; - - /** - * Creates new form jCalculator - */ - public jCalculator() { - initComponents(); - } - - /** - * This method is called from within the constructor to initialize the form. - * WARNING: Do NOT modify this code. The content of this method is always - * regenerated by the Form Editor. - */ - @SuppressWarnings("unchecked") - // //GEN-BEGIN:initComponents - private void initComponents() { - - jScrollPane1 = new javax.swing.JScrollPane(); - txtDisplay = new javax.swing.JTextArea(); - jPanel1 = new javax.swing.JPanel(); - Button1 = new javax.swing.JButton(); - Button2 = new javax.swing.JButton(); - Button3 = new javax.swing.JButton(); - Button4 = new javax.swing.JButton(); - Button5 = new javax.swing.JButton(); - Button6 = new javax.swing.JButton(); - Button7 = new javax.swing.JButton(); - Button8 = new javax.swing.JButton(); - Button9 = new javax.swing.JButton(); - Button10 = new javax.swing.JButton(); - jPanel2 = new javax.swing.JPanel(); - btnEqual = new javax.swing.JButton(); - btnPLUS = new javax.swing.JButton(); - btnMinus = new javax.swing.JButton(); - Clear = new javax.swing.JButton(); - - setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); - - txtDisplay.setColumns(20); - txtDisplay.setRows(5); - jScrollPane1.setViewportView(txtDisplay); - - Button1.setText("1"); - Button1.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button1ActionPerformed(evt); - } - }); - - Button2.setText("2"); - Button2.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button2ActionPerformed(evt); - } - }); - - Button3.setText("3"); - Button3.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button3ActionPerformed(evt); - } - }); - - Button4.setText("4"); - Button4.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button4ActionPerformed(evt); - } - }); - - Button5.setText("5"); - Button5.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button5ActionPerformed(evt); - } - }); - - Button6.setText("6"); - Button6.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button6ActionPerformed(evt); - } - }); - - Button7.setText("7"); - Button7.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button7ActionPerformed(evt); - } - }); - - Button8.setText("8"); - Button8.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button8ActionPerformed(evt); - } - }); - - Button9.setText("9"); - Button9.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button9ActionPerformed(evt); - } - }); - - Button10.setText("0"); - Button10.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - Button10ActionPerformed(evt); - } - }); - - btnEqual.setText("="); - btnEqual.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - btnEqualActionPerformed(evt); - } - }); - - btnPLUS.setText("+"); - btnPLUS.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - btnPLUSActionPerformed(evt); - } - }); - - btnMinus.setText("_"); - btnMinus.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - btnMinusActionPerformed(evt); - } - }); - - Clear.setFont(new java.awt.Font("Tahoma", 0, 10)); // NOI18N - Clear.setText("CL"); - Clear.addActionListener(new java.awt.event.ActionListener() { - public void actionPerformed(java.awt.event.ActionEvent evt) { - ClearActionPerformed(evt); - } - }); - - javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); - jPanel2.setLayout(jPanel2Layout); - jPanel2Layout.setHorizontalGroup( - jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(jPanel2Layout.createSequentialGroup() - .addContainerGap() - .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addComponent(btnMinus, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) - .addGroup(jPanel2Layout.createSequentialGroup() - .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addComponent(btnEqual, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE) - .addComponent(btnPLUS, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE)) - .addGap(0, 0, Short.MAX_VALUE)) - .addComponent(Clear, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) - .addContainerGap()) - ); - jPanel2Layout.setVerticalGroup( - jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(jPanel2Layout.createSequentialGroup() - .addContainerGap() - .addComponent(btnEqual) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) - .addComponent(btnPLUS) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) - .addComponent(btnMinus) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) - .addComponent(Clear) - .addGap(0, 19, Short.MAX_VALUE)) - ); - - javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); - jPanel1.setLayout(jPanel1Layout); - jPanel1Layout.setHorizontalGroup( - jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(jPanel1Layout.createSequentialGroup() - .addContainerGap() - .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(jPanel1Layout.createSequentialGroup() - .addComponent(Button1) - .addGap(18, 18, 18) - .addComponent(Button2) - .addGap(18, 18, 18) - .addComponent(Button3)) - .addGroup(jPanel1Layout.createSequentialGroup() - .addComponent(Button4) - .addGap(18, 18, 18) - .addComponent(Button5) - .addGap(18, 18, 18) - .addComponent(Button6)) - .addGroup(jPanel1Layout.createSequentialGroup() - .addComponent(Button7) - .addGap(18, 18, 18) - .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addComponent(Button10) - .addComponent(Button8)) - .addGap(18, 18, 18) - .addComponent(Button9))) - .addGap(12, 12, 12) - .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) - .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) - ); - jPanel1Layout.setVerticalGroup( - jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(jPanel1Layout.createSequentialGroup() - .addContainerGap() - .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) - .addComponent(Button1) - .addComponent(Button2) - .addComponent(Button3)) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) - .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) - .addComponent(Button4) - .addComponent(Button5) - .addComponent(Button6)) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) - .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) - .addComponent(Button7) - .addComponent(Button8) - .addComponent(Button9)) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) - .addComponent(Button10) - .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) - .addGroup(jPanel1Layout.createSequentialGroup() - .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) - .addGap(0, 11, Short.MAX_VALUE)) - ); - - javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); - getContentPane().setLayout(layout); - layout.setHorizontalGroup( - layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(layout.createSequentialGroup() - .addContainerGap() - .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 256, javax.swing.GroupLayout.PREFERRED_SIZE) - .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) - .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) - ); - layout.setVerticalGroup( - layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) - .addGroup(layout.createSequentialGroup() - .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) - .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE) - .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) - .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) - ); - - pack(); - }// //GEN-END:initComponents - - private void Button2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button2ActionPerformed - String display = txtDisplay.getText() + "2"; - txtDisplay.setText(display); -// TODO add your handling code here: - }//GEN-LAST:event_Button2ActionPerformed - - private void btnMinusActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnMinusActionPerformed - // TODO add your handling code here: - }//GEN-LAST:event_btnMinusActionPerformed - - private void Button1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button1ActionPerformed - // TODO add your handling code here: - String display = txtDisplay.getText() + "1"; - txtDisplay.setText(display); - }//GEN-LAST:event_Button1ActionPerformed - - private void Button3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button3ActionPerformed - String display = txtDisplay.getText() + "3"; - txtDisplay.setText(display); // TODO add your handling code here: - }//GEN-LAST:event_Button3ActionPerformed - - private void Button4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button4ActionPerformed - String display = txtDisplay.getText() + "4"; - txtDisplay.setText(display); // TODO add your handling code here: - }//GEN-LAST:event_Button4ActionPerformed - - private void Button7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button7ActionPerformed - String display = txtDisplay.getText() + "7"; - txtDisplay.setText(display); // TODO add your handling code here: - }//GEN-LAST:event_Button7ActionPerformed - - private void Button5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button5ActionPerformed - String display = txtDisplay.getText() + "5"; - txtDisplay.setText(display); - }//GEN-LAST:event_Button5ActionPerformed - - private void Button9ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button9ActionPerformed - String display = txtDisplay.getText() + "7"; - txtDisplay.setText(display); // TODO add your handling code here: - }//GEN-LAST:event_Button9ActionPerformed - - private void Button8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button8ActionPerformed - String display = txtDisplay.getText() + "8"; - txtDisplay.setText(display); - }//GEN-LAST:event_Button8ActionPerformed - - private void Button6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button6ActionPerformed - String display = txtDisplay.getText() + "6"; - txtDisplay.setText(display); - }//GEN-LAST:event_Button6ActionPerformed - - private void Button10ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button10ActionPerformed - // TODO add your handling code here: - }//GEN-LAST:event_Button10ActionPerformed - - private void btnPLUSActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnPLUSActionPerformed - total += Double.parseDouble(txtDisplay.getText()); - txtDisplay.setText("");// TODO add your handling code here: - }//GEN-LAST:event_btnPLUSActionPerformed - - private void ClearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ClearActionPerformed - total = 0; - txtDisplay.setText(); - // TODO add your handling code here: - }//GEN-LAST:event_ClearActionPerformed - - private void btnEqualActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnEqualActionPerformed - - double current = Double.parseDouble(txtDisplay.getText()); - total += current; - txtDisplay.setText(Double.toString(total)); - - txtDisplay.setText(Double.toString(total) + current); -// TODO add your handling code here: - }//GEN-LAST:event_btnEqualActionPerformed - - /** - * @param args the command line arguments - */ - public static void main(String args[]) { - /* Set the Nimbus look and feel */ - // - /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. - * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html - */ - try { - for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { - if ("Nimbus".equals(info.getName())) { - javax.swing.UIManager.setLookAndFeel(info.getClassName()); - break; - } - } - } catch (ClassNotFoundException ex) { - java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (InstantiationException ex) { - java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (IllegalAccessException ex) { - java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } catch (javax.swing.UnsupportedLookAndFeelException ex) { - java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); - } - // - - /* Create and display the form */ - java.awt.EventQueue.invokeLater(new Runnable() { - public void run() { - new jCalculator().setVisible(true); - } - }); - } - - // Variables declaration - do not modify//GEN-BEGIN:variables - private javax.swing.JButton Button1; - private javax.swing.JButton Button10; - private javax.swing.JButton Button2; - private javax.swing.JButton Button3; - private javax.swing.JButton Button4; - private javax.swing.JButton Button5; - private javax.swing.JButton Button6; - private javax.swing.JButton Button7; - private javax.swing.JButton Button8; - private javax.swing.JButton Button9; - private javax.swing.JButton Clear; - private javax.swing.JButton btnEqual; - private javax.swing.JButton btnMinus; - private javax.swing.JButton btnPLUS; - private javax.swing.JPanel jPanel1; - private javax.swing.JPanel jPanel2; - private javax.swing.JScrollPane jScrollPane1; - private javax.swing.JTextArea txtDisplay; - // End of variables declaration//GEN-END:variables -} diff --git a/1401417015 AngelFlag/Mybody/build.xml b/1401417015 AngelFlag/Mybody/build.xml deleted file mode 100644 index df3f1ee..0000000 --- a/1401417015 AngelFlag/Mybody/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project Mybody. - - - diff --git a/1401417015 AngelFlag/Mybody/manifest.mf b/1401417015 AngelFlag/Mybody/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/Mybody/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml b/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml deleted file mode 100644 index 89b628e..0000000 --- a/1401417015 AngelFlag/Mybody/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/Mybody/nbproject/genfiles.properties b/1401417015 AngelFlag/Mybody/nbproject/genfiles.properties deleted file mode 100644 index 0c5989d..0000000 --- a/1401417015 AngelFlag/Mybody/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=7bfaf959 -build.xml.script.CRC32=a8d98e46 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=7bfaf959 -nbproject/build-impl.xml.script.CRC32=129f3dd2 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/Mybody/nbproject/project.properties b/1401417015 AngelFlag/Mybody/nbproject/project.properties deleted file mode 100644 index fb9217a..0000000 --- a/1401417015 AngelFlag/Mybody/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/Mybody.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=mybody.Mybody -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/Mybody/nbproject/project.xml b/1401417015 AngelFlag/Mybody/nbproject/project.xml deleted file mode 100644 index b528f56..0000000 --- a/1401417015 AngelFlag/Mybody/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - Mybody - - - - - - - - - diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java b/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java deleted file mode 100644 index d2b5c1f..0000000 --- a/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package mybody; - -/** - * - * @author THE NET - */ -public class Mybody { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - Person Angel = new Person(); - //Angel.name ="Angel"; - //Angel.age = 33; - Angel.setName("Angel"); - Angel.setAge(33); - - System.out.println("I am a person!" + "My name is:" + Angel.getName() + " и съм на " + Angel.getAge() +"Години"); - } - -} diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java b/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java deleted file mode 100644 index 0dc3f73..0000000 --- a/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package mybody; - -/** - * - * @author THE NET - */ -class Person { - private String name; - private int age; - - // Name - public String getName(){ - return name; - } - - public void setName(String name){ - this.name= name; - } - public int getAge(){ - return age; - } - - public void setAge(int age) { - this.age=age; - } -} - - diff --git a/1401417015 AngelFlag/Mybody/src/mybody/person.java b/1401417015 AngelFlag/Mybody/src/mybody/person.java deleted file mode 100644 index 68ed6c9..0000000 --- a/1401417015 AngelFlag/Mybody/src/mybody/person.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package mybody; - -/** - * - * @author THE NET - */ -class person { - -} diff --git a/1401417015 AngelFlag/alabala/src/alabala/Alabala.java b/1401417015 AngelFlag/alabala/src/alabala/Alabala.java deleted file mode 100644 index 3b6215d..0000000 --- a/1401417015 AngelFlag/alabala/src/alabala/Alabala.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package alabala; - -/** - * - * @author THE NET - */ -public class Alabala { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} diff --git a/1401417015 AngelFlag/animals/build.xml b/1401417015 AngelFlag/animals/build.xml deleted file mode 100644 index 8d1ce2b..0000000 --- a/1401417015 AngelFlag/animals/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project animals. - - - diff --git a/1401417015 AngelFlag/animals/manifest.mf b/1401417015 AngelFlag/animals/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/animals/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/animals/nbproject/build-impl.xml b/1401417015 AngelFlag/animals/nbproject/build-impl.xml deleted file mode 100644 index e4d90f0..0000000 --- a/1401417015 AngelFlag/animals/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/animals/nbproject/genfiles.properties b/1401417015 AngelFlag/animals/nbproject/genfiles.properties deleted file mode 100644 index f7a0a0f..0000000 --- a/1401417015 AngelFlag/animals/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=aa0ca520 -build.xml.script.CRC32=d83b875e -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=aa0ca520 -nbproject/build-impl.xml.script.CRC32=d4ca1e6d -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/animals/nbproject/project.properties b/1401417015 AngelFlag/animals/nbproject/project.properties deleted file mode 100644 index 3d57e8c..0000000 --- a/1401417015 AngelFlag/animals/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/animals.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=animals.Animals -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/animals/nbproject/project.xml b/1401417015 AngelFlag/animals/nbproject/project.xml deleted file mode 100644 index 571dba5..0000000 --- a/1401417015 AngelFlag/animals/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - animals - - - - - - - - - diff --git a/1401417015 AngelFlag/animals/src/animals/Animal.java b/1401417015 AngelFlag/animals/src/animals/Animal.java deleted file mode 100644 index 745371e..0000000 --- a/1401417015 AngelFlag/animals/src/animals/Animal.java +++ /dev/null @@ -1,17 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package animals; - -/** - * - * @author THE NET - */ -public class Animal { - public void makeNoise() { - System.out.println("Grrrrrrrrr"); - } -} - \ No newline at end of file diff --git a/1401417015 AngelFlag/animals/src/animals/Animals.java b/1401417015 AngelFlag/animals/src/animals/Animals.java deleted file mode 100644 index 769f1e5..0000000 --- a/1401417015 AngelFlag/animals/src/animals/Animals.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package animals; - -/** - * - * @author THE NET - */ -public class Animals { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - Animal[] myAnimals = new Animal[5]; - Cat fluffy = new Cat(); - Dog sharo = new Dog(); - - - myAnimals[0] = fluffy; - myAnimals[1] = sharo; - - myAnimals[0].makeNoise(); - myAnimals[1].makeNoise(); - - } - -} diff --git a/1401417015 AngelFlag/animals/src/animals/Cat.java b/1401417015 AngelFlag/animals/src/animals/Cat.java deleted file mode 100644 index 0342f06..0000000 --- a/1401417015 AngelFlag/animals/src/animals/Cat.java +++ /dev/null @@ -1,19 +0,0 @@ -w/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package animals; - -/** - * - * @author THE NET - */ -public class Cat extends Animal { - - @Override - public void makeNoise() { - System.out.println("Miauuuuuuu"); - } - -} diff --git a/1401417015 AngelFlag/animals/src/animals/Dog.java b/1401417015 AngelFlag/animals/src/animals/Dog.java deleted file mode 100644 index ee4c71b..0000000 --- a/1401417015 AngelFlag/animals/src/animals/Dog.java +++ /dev/null @@ -1,19 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package animals; - -/** - * - * @author THE NET - */ -public class Dog extends Animal{ - - @Override - public void makeNoise() { - super.makeNoise(); - } - -} diff --git a/1401417015 AngelFlag/bigdecimal/build.xml b/1401417015 AngelFlag/bigdecimal/build.xml deleted file mode 100644 index b371ba2..0000000 --- a/1401417015 AngelFlag/bigdecimal/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project bigdecimal. - - - diff --git a/1401417015 AngelFlag/bigdecimal/manifest.mf b/1401417015 AngelFlag/bigdecimal/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/bigdecimal/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml b/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml deleted file mode 100644 index 674420c..0000000 --- a/1401417015 AngelFlag/bigdecimal/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties b/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties deleted file mode 100644 index e2784d3..0000000 --- a/1401417015 AngelFlag/bigdecimal/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=618fbcbe -build.xml.script.CRC32=90d896f6 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=618fbcbe -nbproject/build-impl.xml.script.CRC32=8a487ec2 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.properties b/1401417015 AngelFlag/bigdecimal/nbproject/project.properties deleted file mode 100644 index a41dd83..0000000 --- a/1401417015 AngelFlag/bigdecimal/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/bigdecimal.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=bigdecimal.Bigdecimal -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/bigdecimal/nbproject/project.xml b/1401417015 AngelFlag/bigdecimal/nbproject/project.xml deleted file mode 100644 index da29dda..0000000 --- a/1401417015 AngelFlag/bigdecimal/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - bigdecimal - - - - - - - - - diff --git a/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java deleted file mode 100644 index cc7888e..0000000 --- a/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package bigdecimal; - -/** - * - * @author THE NET - */ -import java.math.BigDecimal; -public class Bigdecimal { - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - double sum = 0.0d; - BigDecimal bdValue = new BigDecimal("0.1"); - BigDecimal bdSum = new BigDecimal("0.0"); - for(int i=1; i<=10; i++) { - sum += 0.1d; - bdSum = bdSum.add(bdValue); -} - System.out.println("Double sum is: " + sum); - System.out.println("BigDecimal sum is: " + bdSum); - - } -} diff --git a/1401417015 AngelFlag/cat/build.xml b/1401417015 AngelFlag/cat/build.xml deleted file mode 100644 index 2322b93..0000000 --- a/1401417015 AngelFlag/cat/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project cat. - - - diff --git a/1401417015 AngelFlag/cat/manifest.mf b/1401417015 AngelFlag/cat/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/cat/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/cat/nbproject/build-impl.xml b/1401417015 AngelFlag/cat/nbproject/build-impl.xml deleted file mode 100644 index fe4896d..0000000 --- a/1401417015 AngelFlag/cat/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/cat/nbproject/genfiles.properties b/1401417015 AngelFlag/cat/nbproject/genfiles.properties deleted file mode 100644 index 58463a2..0000000 --- a/1401417015 AngelFlag/cat/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=e8bb94c1 -build.xml.script.CRC32=c5913046 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=e8bb94c1 -nbproject/build-impl.xml.script.CRC32=c9f37adc -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/cat/nbproject/project.properties b/1401417015 AngelFlag/cat/nbproject/project.properties deleted file mode 100644 index 113f1cc..0000000 --- a/1401417015 AngelFlag/cat/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/cat.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=cat.catManip -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/cat/nbproject/project.xml b/1401417015 AngelFlag/cat/nbproject/project.xml deleted file mode 100644 index df25792..0000000 --- a/1401417015 AngelFlag/cat/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - cat - - - - - - - - - diff --git a/1401417015 AngelFlag/cat/src/cat/cat.java b/1401417015 AngelFlag/cat/src/cat/cat.java deleted file mode 100644 index bc3e48e..0000000 --- a/1401417015 AngelFlag/cat/src/cat/cat.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package cat; - -/** - * - * @author THE NET - */ -public class cat { - - private String name; - private String color; - - cat(String johny, String green) { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - public String getName() { - return this.name; - } - public void setName(String name) { - this.name = name; - } - public String getColor() { - return this.color; - } - - public void setColor(String color) { - this.color = color; - } - - public cat(){ - this.name= "Lisi"; - this.color= "gray"; - } - - /** - * - */ - public void sayMiau(){ - System.out.printf("Cat %s said: Miauuuuuu!%n", name); - } - - } \ No newline at end of file diff --git a/1401417015 AngelFlag/cat/src/cat/catManip.java b/1401417015 AngelFlag/cat/src/cat/catManip.java deleted file mode 100644 index 29a0121..0000000 --- a/1401417015 AngelFlag/cat/src/cat/catManip.java +++ /dev/null @@ -1,18 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package cat; - -/** - * - * @author THE NET - */ -public class catManip { - public static void main(String[] args) { - cat method = new cat("johny", "green"); - System.out.println(method); - - } -} diff --git a/1401417015 AngelFlag/course/build.xml b/1401417015 AngelFlag/course/build.xml deleted file mode 100644 index 28ffcb3..0000000 --- a/1401417015 AngelFlag/course/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project course. - - - diff --git a/1401417015 AngelFlag/course/manifest.mf b/1401417015 AngelFlag/course/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/course/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/course/nbproject/build-impl.xml b/1401417015 AngelFlag/course/nbproject/build-impl.xml deleted file mode 100644 index f71de41..0000000 --- a/1401417015 AngelFlag/course/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/course/nbproject/genfiles.properties b/1401417015 AngelFlag/course/nbproject/genfiles.properties deleted file mode 100644 index 46296b5..0000000 --- a/1401417015 AngelFlag/course/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8948245e -build.xml.script.CRC32=8a3e2cbe -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8948245e -nbproject/build-impl.xml.script.CRC32=4f5680da -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/course/nbproject/project.properties b/1401417015 AngelFlag/course/nbproject/project.properties deleted file mode 100644 index 063c409..0000000 --- a/1401417015 AngelFlag/course/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/course.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=course.Course -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/course/nbproject/project.xml b/1401417015 AngelFlag/course/nbproject/project.xml deleted file mode 100644 index cb8db17..0000000 --- a/1401417015 AngelFlag/course/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - course - - - - - - - - - diff --git a/1401417015 AngelFlag/course/src/course/Course.java b/1401417015 AngelFlag/course/src/course/Course.java deleted file mode 100644 index f650f3f..0000000 --- a/1401417015 AngelFlag/course/src/course/Course.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package course; - -/** - * - * @author THE NET - */ -import java.util.Scanner; - -//Дефинирайте клас който отразява човек. -//За решаване на конкретен проблем от всички характерситики на човека ни интересуват име, -//фамилия и години. Класът трябва да съдържа функционалност, -//която позволява на всеки конкретен обект -//от този клас да се представи с името, фамилията и възрастта си. -public class Course { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - Scanner Keyboard= new Scanner(System.in); - - System.out.println("Какво е вашето име?"); - String Name = Keyboard.nextLine(); - - System.out.println("Каква е вашата фамилия?"); - String Family = Keyboard.nextLine(); - - System.out.println("На колко години сте?"); - int Age = Keyboard.nextInt(); - - - Person(); - } - - - public static void Person() { - String Name = ("Angel"); - int Age = 33; - - System.out.print("Моето име е:" + Name + " И съм на " + Age + "Години"); - } -} - - \ No newline at end of file diff --git a/1401417015 AngelFlag/course/src/course/Int.java b/1401417015 AngelFlag/course/src/course/Int.java deleted file mode 100644 index 1e28962..0000000 --- a/1401417015 AngelFlag/course/src/course/Int.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package course; - -/** - * - * @author THE NET - */ -class Int { - -} diff --git a/1401417015 AngelFlag/course/src/course/Person.java b/1401417015 AngelFlag/course/src/course/Person.java deleted file mode 100644 index e7c05cd..0000000 --- a/1401417015 AngelFlag/course/src/course/Person.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package course; - -/** - * - * @author THE NET - */ -public class Person { - -} diff --git a/1401417015 AngelFlag/datatype/build.xml b/1401417015 AngelFlag/datatype/build.xml deleted file mode 100644 index a3a8dae..0000000 --- a/1401417015 AngelFlag/datatype/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project datatype. - - - diff --git a/1401417015 AngelFlag/datatype/manifest.mf b/1401417015 AngelFlag/datatype/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/datatype/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/datatype/nbproject/build-impl.xml b/1401417015 AngelFlag/datatype/nbproject/build-impl.xml deleted file mode 100644 index 5ec9fa9..0000000 --- a/1401417015 AngelFlag/datatype/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/datatype/nbproject/genfiles.properties b/1401417015 AngelFlag/datatype/nbproject/genfiles.properties deleted file mode 100644 index 5f59edb..0000000 --- a/1401417015 AngelFlag/datatype/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=29b44223 -build.xml.script.CRC32=2b73bf7e -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=29b44223 -nbproject/build-impl.xml.script.CRC32=5fdc240a -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/datatype/nbproject/project.properties b/1401417015 AngelFlag/datatype/nbproject/project.properties deleted file mode 100644 index 94198f5..0000000 --- a/1401417015 AngelFlag/datatype/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/datatype.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=datatype.Datatype -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/datatype/nbproject/project.xml b/1401417015 AngelFlag/datatype/nbproject/project.xml deleted file mode 100644 index 934e5a8..0000000 --- a/1401417015 AngelFlag/datatype/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - datatype - - - - - - - - - diff --git a/1401417015 AngelFlag/datatype/src/datatype/Datatype.java b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java deleted file mode 100644 index 4dedf36..0000000 --- a/1401417015 AngelFlag/datatype/src/datatype/Datatype.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package datatype; - -import java.io.IOException; -import java.util.*; - - public class Datatype { - - public static void main(String[] args) throws IOException { - - byte myByte = 2; - short myShort = 257; - int myInt = -123; - long myLong = 123L; - float myFloat = 2.34F; - double myDouble =2.54; - char myChar = 'c'; - boolean myBoolean = true; //false; - String myName = " Stoyan"; - - System.out.println(myName); - System.out.print(myName); - - int ch; - ch= System.in.read(); - { - double sum = 0.0; - for(int i=1; i<=10; i++) - { - sum += 0.1; - { -System.out.println(sum); - } - } - - } - }} - - \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1Stoyan/build.xml b/1401417015 AngelFlag/exam1Stoyan/build.xml deleted file mode 100644 index 059cb68..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1Stoyan. - - - diff --git a/1401417015 AngelFlag/exam1Stoyan/manifest.mf b/1401417015 AngelFlag/exam1Stoyan/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml deleted file mode 100644 index daf1f62..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties deleted file mode 100644 index ee39273..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=1d95c2b3 -build.xml.script.CRC32=fb34b3ba -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=1d95c2b3 -nbproject/build-impl.xml.script.CRC32=496e21a5 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties deleted file mode 100644 index 415b0bf..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1Stoyan.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1stoyan.Exam1Stoyan -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml b/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml deleted file mode 100644 index 20178c8..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1Stoyan - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java deleted file mode 100644 index 38f9080..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1stoyan; -import java.util.Scanner; -/** - * - * @author THE NET - */ -public class Exam1Stoyan { - public static Scanner input=new Scanner(System.in); - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - System.out.println("Please choose the figure 1.Circle, 2.Trapeze"); - int choice = input.nextInt(); - - calculateable figure; - if (choice == 1) figure = new circle(); - else figure = new Trapeze();// TODO code application logic here - figure.readParameters(); - System.out.printf("%.2f", figure.calculateSurface()); - } - -} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java deleted file mode 100644 index 012ec68..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Trapeze.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1stoyan; - -/** - * - * @author THE NET - */ -public class Trapeze implements calculateable { - - private double a; - private double b; - private double h; - - @Override - public void readParameters() { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public double calculateSurface() { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - - - -} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java deleted file mode 100644 index db67819..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java +++ /dev/null @@ -1,16 +0,0 @@ -package exam1stoyan; - -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -/** - * - * @author THE NET - */ -public interface calculateable { - void readParameters(); - double calculateSurface(); -} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java deleted file mode 100644 index f382384..0000000 --- a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/circle.java +++ /dev/null @@ -1,35 +0,0 @@ -package exam1stoyan; - -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -/** - * - * @author THE NET - */ -public class circle implements calculateable { - - private double r; - - - @Override - public void readParameters() { - System.out.print("\nPlease enter r: "); - System.out.println(""); - r = Exam1Stoyan.input.nextDouble(); - } - - @Override - public double calculateSurface() { - return Math.PI * r * r; - } - - - - - -} - diff --git a/1401417015 AngelFlag/exam1_10/build.xml b/1401417015 AngelFlag/exam1_10/build.xml deleted file mode 100644 index 31bc0db..0000000 --- a/1401417015 AngelFlag/exam1_10/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1_10. - - - diff --git a/1401417015 AngelFlag/exam1_10/manifest.mf b/1401417015 AngelFlag/exam1_10/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1_10/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml deleted file mode 100644 index d2c9fe3..0000000 --- a/1401417015 AngelFlag/exam1_10/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties deleted file mode 100644 index c0a9292..0000000 --- a/1401417015 AngelFlag/exam1_10/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8e72f6a1 -build.xml.script.CRC32=90833347 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8e72f6a1 -nbproject/build-impl.xml.script.CRC32=1c46fc17 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.properties b/1401417015 AngelFlag/exam1_10/nbproject/project.properties deleted file mode 100644 index c7a351a..0000000 --- a/1401417015 AngelFlag/exam1_10/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1_10.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1_10.Exam1_10 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1_10/nbproject/project.xml b/1401417015 AngelFlag/exam1_10/nbproject/project.xml deleted file mode 100644 index f583e68..0000000 --- a/1401417015 AngelFlag/exam1_10/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1_10 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java b/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java deleted file mode 100644 index 97260f0..0000000 --- a/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1_10; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -public class Exam1_10 { - /** - */ - public static void f(double a, double b){ - - System.out.println((a*a + (2*a-(b*b)) + 7*b)); - - } - public static void main(String[] args) { - Scanner scanner = new Scanner(System.in); - - System.out.print("Въведете а="); - Double a = scanner.nextDouble(); - - System.out.print("Въведете b="); - Double b = scanner.nextDouble(); - - System.out.print("Въведете c="); - Double c = scanner.nextDouble(); - - System.out.print("Въведете d="); - Double d = scanner.nextDouble(); - - scanner.close(); - - System.out.println(a + b + c +d); - f(a,b); - f(a,d); - f(b,c); - - } - } \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task3.2/build.xml b/1401417015 AngelFlag/exam1task3.2/build.xml deleted file mode 100644 index b594a76..0000000 --- a/1401417015 AngelFlag/exam1task3.2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task3.2. - - - diff --git a/1401417015 AngelFlag/exam1task3.2/manifest.mf b/1401417015 AngelFlag/exam1task3.2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task3.2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml deleted file mode 100644 index 89deda9..0000000 --- a/1401417015 AngelFlag/exam1task3.2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties deleted file mode 100644 index 0f8c5ad..0000000 --- a/1401417015 AngelFlag/exam1task3.2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=aa744994 -build.xml.script.CRC32=f6a8db23 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=aa744994 -nbproject/build-impl.xml.script.CRC32=58519fe9 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties b/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties deleted file mode 100644 index 7893a5e..0000000 --- a/1401417015 AngelFlag/exam1task3.2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task3.2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task3.pkg2.Exam1task32 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml b/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml deleted file mode 100644 index a1bdeb9..0000000 --- a/1401417015 AngelFlag/exam1task3.2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task3.2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java deleted file mode 100644 index 6d4bfdd..0000000 --- a/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java +++ /dev/null @@ -1,33 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task3.pkg2; - -/** - * - * @author THE NET - */ -public class Exam1task32 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - double d1=5.2; double d2=2.3; - - m(d1,d2); - m(d2 , d1); - m(2.0,1.2); - - } - public static void m(double d1, double d2){ - - System.out.println(d1 + "+" + d2 +"=" + (d1+d2));//l - System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); - System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); - System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); - -} -} diff --git a/1401417015 AngelFlag/exam1task3intTwo/build.xml b/1401417015 AngelFlag/exam1task3intTwo/build.xml deleted file mode 100644 index a28f87e..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task3intTwo. - - - diff --git a/1401417015 AngelFlag/exam1task3intTwo/manifest.mf b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml deleted file mode 100644 index e0a1e75..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties deleted file mode 100644 index 87fc8aa..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=ee924b3e -build.xml.script.CRC32=d8ac396d -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=ee924b3e -nbproject/build-impl.xml.script.CRC32=de069188 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties deleted file mode 100644 index 564caf6..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task3intTwo.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task3inttwo.Exam1task3intTwo -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml b/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml deleted file mode 100644 index 59d0105..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task3intTwo - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java deleted file mode 100644 index acdb436..0000000 --- a/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task3inttwo; - -/** - * - * @author FlagBg - */ -public class Exam1task3intTwo { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - double d1=5.2; double d2=2.3; - - System.out.println(d1 + "+" + d2 + "=" + (d1 + d2));// - System.out.println(d1 + "-" + d2 + "=" + (d1 - d2)); - System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); - System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); - - } - } - - \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task4/build.xml b/1401417015 AngelFlag/exam1task4/build.xml deleted file mode 100644 index 2cdc238..0000000 --- a/1401417015 AngelFlag/exam1task4/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task4. - - - diff --git a/1401417015 AngelFlag/exam1task4/manifest.mf b/1401417015 AngelFlag/exam1task4/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task4/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml deleted file mode 100644 index 9d535e9..0000000 --- a/1401417015 AngelFlag/exam1task4/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties deleted file mode 100644 index a280fb9..0000000 --- a/1401417015 AngelFlag/exam1task4/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=63e4e26b -build.xml.script.CRC32=bc9a397b -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=63e4e26b -nbproject/build-impl.xml.script.CRC32=3cb83f00 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.properties b/1401417015 AngelFlag/exam1task4/nbproject/project.properties deleted file mode 100644 index dfc0eed..0000000 --- a/1401417015 AngelFlag/exam1task4/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task4.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task4.Exam1task4 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task4/nbproject/project.xml b/1401417015 AngelFlag/exam1task4/nbproject/project.xml deleted file mode 100644 index 8cfba78..0000000 --- a/1401417015 AngelFlag/exam1task4/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task4 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java deleted file mode 100644 index 1120a53..0000000 --- a/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task4; - -/** - * - * @author THE NET - */ -public class Exam1task4 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int i, j; - i=10; j = i++; - System.out.println(j); // 10 - i=10; j = ++i; - System.out.println(j); // 11 - i=10; j = i--; - System.out.println(j); // 10 - i=10; j = --i; - System.out.println(j); // 9 - - } -} diff --git a/1401417015 AngelFlag/exam1task5/build.xml b/1401417015 AngelFlag/exam1task5/build.xml deleted file mode 100644 index 7754465..0000000 --- a/1401417015 AngelFlag/exam1task5/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task5. - - - diff --git a/1401417015 AngelFlag/exam1task5/manifest.mf b/1401417015 AngelFlag/exam1task5/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task5/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml deleted file mode 100644 index 4d5c22b..0000000 --- a/1401417015 AngelFlag/exam1task5/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties deleted file mode 100644 index 2067c90..0000000 --- a/1401417015 AngelFlag/exam1task5/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=6bf76e4d -build.xml.script.CRC32=92a147ac -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=6bf76e4d -nbproject/build-impl.xml.script.CRC32=fc56e143 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.properties b/1401417015 AngelFlag/exam1task5/nbproject/project.properties deleted file mode 100644 index 1e4a1b8..0000000 --- a/1401417015 AngelFlag/exam1task5/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task5.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task5.Exam1task5 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task5/nbproject/project.xml b/1401417015 AngelFlag/exam1task5/nbproject/project.xml deleted file mode 100644 index 80b9ecd..0000000 --- a/1401417015 AngelFlag/exam1task5/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task5 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java deleted file mode 100644 index 20d36c1..0000000 --- a/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task5; - -/** - * - * @author THE NET - */ -public class Exam1task5 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - float f =1.25f; - f+=5; - System.out.println(f); - f-=2; - System.out.println(f); - f*=10; - System.out.println(f); - f/=10; - System.out.println(f); - - // TODO code application logic here - } -} diff --git a/1401417015 AngelFlag/exam1task6/build.xml b/1401417015 AngelFlag/exam1task6/build.xml deleted file mode 100644 index 4a770f6..0000000 --- a/1401417015 AngelFlag/exam1task6/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task6. - - - diff --git a/1401417015 AngelFlag/exam1task6/manifest.mf b/1401417015 AngelFlag/exam1task6/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task6/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml deleted file mode 100644 index c3dfea1..0000000 --- a/1401417015 AngelFlag/exam1task6/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties deleted file mode 100644 index 0cc3976..0000000 --- a/1401417015 AngelFlag/exam1task6/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=73c3fa27 -build.xml.script.CRC32=e0ecc4d5 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=73c3fa27 -nbproject/build-impl.xml.script.CRC32=661485c7 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.properties b/1401417015 AngelFlag/exam1task6/nbproject/project.properties deleted file mode 100644 index 6db7e93..0000000 --- a/1401417015 AngelFlag/exam1task6/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task6.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task6.Exam1task6 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task6/nbproject/project.xml b/1401417015 AngelFlag/exam1task6/nbproject/project.xml deleted file mode 100644 index 8cbb480..0000000 --- a/1401417015 AngelFlag/exam1task6/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task6 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java b/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java deleted file mode 100644 index 4741084..0000000 --- a/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task6; - -/** - * - * @author THE NET - */ -public class Exam1task6 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - boolean b; - b = (1==1); - System.out.println(b); - b = (1==2); - System.out.println(b); - //yes! - } - -} diff --git a/1401417015 AngelFlag/exam1task7/build.xml b/1401417015 AngelFlag/exam1task7/build.xml deleted file mode 100644 index e8aa5d7..0000000 --- a/1401417015 AngelFlag/exam1task7/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task7. - - - diff --git a/1401417015 AngelFlag/exam1task7/manifest.mf b/1401417015 AngelFlag/exam1task7/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task7/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml deleted file mode 100644 index a690a3b..0000000 --- a/1401417015 AngelFlag/exam1task7/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties deleted file mode 100644 index 99802b7..0000000 --- a/1401417015 AngelFlag/exam1task7/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=7bd07601 -build.xml.script.CRC32=ced7ba02 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=7bd07601 -nbproject/build-impl.xml.script.CRC32=a6fa5b84 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.properties b/1401417015 AngelFlag/exam1task7/nbproject/project.properties deleted file mode 100644 index cf0ca23..0000000 --- a/1401417015 AngelFlag/exam1task7/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task7.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task7.Exam1task7 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task7/nbproject/project.xml b/1401417015 AngelFlag/exam1task7/nbproject/project.xml deleted file mode 100644 index eac5f4f..0000000 --- a/1401417015 AngelFlag/exam1task7/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task7 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java deleted file mode 100644 index e53948f..0000000 --- a/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task7; - -/** - * - * @author THE NET - */ -public class Exam1task7 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - short s1=5; int s2 = 6; - System.out.println(s1==s2); - System.out.println(s1s2); - System.out.println(s1<=s2); - System.out.println(s1>=s2); - - } - -} diff --git a/1401417015 AngelFlag/exam1task8/build.xml b/1401417015 AngelFlag/exam1task8/build.xml deleted file mode 100644 index 7f4782a..0000000 --- a/1401417015 AngelFlag/exam1task8/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task8. - - - diff --git a/1401417015 AngelFlag/exam1task8/manifest.mf b/1401417015 AngelFlag/exam1task8/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task8/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml deleted file mode 100644 index d3f99f9..0000000 --- a/1401417015 AngelFlag/exam1task8/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties deleted file mode 100644 index 6a1dcd8..0000000 --- a/1401417015 AngelFlag/exam1task8/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=0336b3c3 -build.xml.script.CRC32=aedd32de -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=0336b3c3 -nbproject/build-impl.xml.script.CRC32=3822a7d3 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.properties b/1401417015 AngelFlag/exam1task8/nbproject/project.properties deleted file mode 100644 index c0700b6..0000000 --- a/1401417015 AngelFlag/exam1task8/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task8.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task8.Exam1task8 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8/nbproject/project.xml b/1401417015 AngelFlag/exam1task8/nbproject/project.xml deleted file mode 100644 index 929ac6c..0000000 --- a/1401417015 AngelFlag/exam1task8/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task8 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java deleted file mode 100644 index b4ba6ca..0000000 --- a/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task8; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -public class Exam1task8 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - Scanner scanner = new Scanner(System.in); - - System.out.print("Въведете i= "); - int i = scanner.nextInt(); - - System.out.print("Въведете j = "); - int j = scanner.nextInt(); - - scanner.close (); - System.out.println(i + j); - - } -} - diff --git a/1401417015 AngelFlag/exam1task8a/build.xml b/1401417015 AngelFlag/exam1task8a/build.xml deleted file mode 100644 index 067cc16..0000000 --- a/1401417015 AngelFlag/exam1task8a/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task8a. - - - diff --git a/1401417015 AngelFlag/exam1task8a/manifest.mf b/1401417015 AngelFlag/exam1task8a/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task8a/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml deleted file mode 100644 index dec15af..0000000 --- a/1401417015 AngelFlag/exam1task8a/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties deleted file mode 100644 index 806edee..0000000 --- a/1401417015 AngelFlag/exam1task8a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=e3149a2b -build.xml.script.CRC32=ed57595a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=e3149a2b -nbproject/build-impl.xml.script.CRC32=d56167ca -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.properties b/1401417015 AngelFlag/exam1task8a/nbproject/project.properties deleted file mode 100644 index 0570ca0..0000000 --- a/1401417015 AngelFlag/exam1task8a/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task8a.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task8a.Exam1task8a -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task8a/nbproject/project.xml b/1401417015 AngelFlag/exam1task8a/nbproject/project.xml deleted file mode 100644 index e81a050..0000000 --- a/1401417015 AngelFlag/exam1task8a/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task8a - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java deleted file mode 100644 index a852541..0000000 --- a/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java +++ /dev/null @@ -1,32 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task8a; - -/** - * - * @author THE NET - */ -public class Exam1task8a { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - short s1=5; - short s2=6; - System.out.println(true && true); - System.out.println((s2>=s1) && (s1+1 ==s2)); - System.out.println(true || false); - System.out.println((s1s2)); - System.out.println(!(s1 - - - - - - - - - - Builds, tests, and runs the project exam1task9. - - - diff --git a/1401417015 AngelFlag/exam1task9/manifest.mf b/1401417015 AngelFlag/exam1task9/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task9/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml deleted file mode 100644 index 0d0e67f..0000000 --- a/1401417015 AngelFlag/exam1task9/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties deleted file mode 100644 index c6ff1e9..0000000 --- a/1401417015 AngelFlag/exam1task9/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=0b253fe5 -build.xml.script.CRC32=80e64c09 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=0b253fe5 -nbproject/build-impl.xml.script.CRC32=f8cc7990 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.properties b/1401417015 AngelFlag/exam1task9/nbproject/project.properties deleted file mode 100644 index 34cb88a..0000000 --- a/1401417015 AngelFlag/exam1task9/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task9.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task9.Exam1task9 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9/nbproject/project.xml b/1401417015 AngelFlag/exam1task9/nbproject/project.xml deleted file mode 100644 index 1fa2aee..0000000 --- a/1401417015 AngelFlag/exam1task9/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task9 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java deleted file mode 100644 index 2b91e92..0000000 --- a/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task9; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -public class Exam1task9 { - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - Scanner scanner = new Scanner(System.in); - - System.out.print("Въведете две цели числа и низ: i1 i2 s1 = "); - int i1, i2; - String s; - i1 = scanner.nextInt(); - i2 = scanner.nextInt(); - s = scanner.next(); - - System.out.println(i1+i2); - System.out.println(s); - - scanner.close(); - - - } - -} diff --git a/1401417015 AngelFlag/exam1task9a/build.xml b/1401417015 AngelFlag/exam1task9a/build.xml deleted file mode 100644 index ba7faac..0000000 --- a/1401417015 AngelFlag/exam1task9a/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task9a. - - - diff --git a/1401417015 AngelFlag/exam1task9a/manifest.mf b/1401417015 AngelFlag/exam1task9a/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task9a/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml deleted file mode 100644 index f2d00b1..0000000 --- a/1401417015 AngelFlag/exam1task9a/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties deleted file mode 100644 index 194ea4a..0000000 --- a/1401417015 AngelFlag/exam1task9a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=31110c5a -build.xml.script.CRC32=40d1ac97 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=31110c5a -nbproject/build-impl.xml.script.CRC32=5350db3d -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.properties b/1401417015 AngelFlag/exam1task9a/nbproject/project.properties deleted file mode 100644 index 6b8fa23..0000000 --- a/1401417015 AngelFlag/exam1task9a/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task9a.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task9a.Exam1task9a -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9a/nbproject/project.xml b/1401417015 AngelFlag/exam1task9a/nbproject/project.xml deleted file mode 100644 index 2be55a7..0000000 --- a/1401417015 AngelFlag/exam1task9a/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task9a - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java deleted file mode 100644 index d675187..0000000 --- a/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task9a; - -/** - * - * @author THE NET - */ -public class Exam1task9a { - - /** - * @param args the command line arguments - */ - private static void bigger(double d1, double d2) { - - double d3 = d1 * d2; - if(d3>50); - {System.out.println(d1 + "*" + d2 + "=" + d3); - } -} - - public static void main(String[] args) { - double d1 = 4.5; double d2 = 5; - bigger(d1,d2); - bigger(5,10); - bigger(5,11); - - - } - -} diff --git a/1401417015 AngelFlag/exam1task9b/build.xml b/1401417015 AngelFlag/exam1task9b/build.xml deleted file mode 100644 index 6b93dd8..0000000 --- a/1401417015 AngelFlag/exam1task9b/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task9b. - - - diff --git a/1401417015 AngelFlag/exam1task9b/manifest.mf b/1401417015 AngelFlag/exam1task9b/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task9b/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml deleted file mode 100644 index 48febd3..0000000 --- a/1401417015 AngelFlag/exam1task9b/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties deleted file mode 100644 index 2109eea..0000000 --- a/1401417015 AngelFlag/exam1task9b/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=29259830 -build.xml.script.CRC32=b8263768 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=29259830 -nbproject/build-impl.xml.script.CRC32=ae93b90c -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.properties b/1401417015 AngelFlag/exam1task9b/nbproject/project.properties deleted file mode 100644 index bb58fe8..0000000 --- a/1401417015 AngelFlag/exam1task9b/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task9b.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task9b.Exam1task9b -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9b/nbproject/project.xml b/1401417015 AngelFlag/exam1task9b/nbproject/project.xml deleted file mode 100644 index d1f1772..0000000 --- a/1401417015 AngelFlag/exam1task9b/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task9b - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java deleted file mode 100644 index 0293cba..0000000 --- a/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task9b; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -public class Exam1task9b { - - /** - * @param args the command line arguments - */ - public static void bigger(double d1, double d2) { - double d3 = d1 * d2; - if(d3>50); - {System.out.println(d1 + "*" + d2 + "=" + d3); - } - } - public static void main(String[] args) - { - f(11,12); - double d1 = 4.5; double d2 = 5; - bigger(d1,d2); - bigger(5,10); - bigger(5,11); - Scanner scanner = new Scanner(System.in); - System.out.print("Въведете d1= "); - int i = scanner.nextInt(); - - System.out.print("Въведете d2 = "); - int j = scanner.nextInt(); - - scanner.close (); - if((i*j)>50); - System.out.println(i * j); - - } - private static void Falcon(double 28, double 3.4); - - System.out.println(a1*) - } -{ - -} - - -} diff --git a/1401417015 AngelFlag/exam1task9c/build.xml b/1401417015 AngelFlag/exam1task9c/build.xml deleted file mode 100644 index 08bef7c..0000000 --- a/1401417015 AngelFlag/exam1task9c/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam1task9c. - - - diff --git a/1401417015 AngelFlag/exam1task9c/manifest.mf b/1401417015 AngelFlag/exam1task9c/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam1task9c/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml deleted file mode 100644 index 790965a..0000000 --- a/1401417015 AngelFlag/exam1task9c/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties deleted file mode 100644 index 765a39d..0000000 --- a/1401417015 AngelFlag/exam1task9c/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=21361416 -build.xml.script.CRC32=595bbc02 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=21361416 -nbproject/build-impl.xml.script.CRC32=4cfd9adc -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.properties b/1401417015 AngelFlag/exam1task9c/nbproject/project.properties deleted file mode 100644 index 334528b..0000000 --- a/1401417015 AngelFlag/exam1task9c/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam1task9c.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam1task9c.Exam1task9c -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam1task9c/nbproject/project.xml b/1401417015 AngelFlag/exam1task9c/nbproject/project.xml deleted file mode 100644 index 9548348..0000000 --- a/1401417015 AngelFlag/exam1task9c/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam1task9c - - - - - - - - - diff --git a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java deleted file mode 100644 index 7e90dea..0000000 --- a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam1task9c; - -/** - * - * @author THE NET - */ -public class Exam1task9c { - - /** - * @param d1 - * @param d2 - */ - public static void m(double d1, double d2){ - if (d1+d2> 20) - System.out.println((d1+d2)*(d1-d2)); - else - System.out.println((d1+d2)/5)); - - } - public static void main(String[] args) { - m(11,15); - m(5,11); - - } - public static void f(double a, double b){ - - - System.out.println(a*a + 2*(a-b*b)+7*b); - } -} diff --git a/1401417015 AngelFlag/exam2.8menuA/build.xml b/1401417015 AngelFlag/exam2.8menuA/build.xml deleted file mode 100644 index dffb653..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2.8menuA. - - - diff --git a/1401417015 AngelFlag/exam2.8menuA/manifest.mf b/1401417015 AngelFlag/exam2.8menuA/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml deleted file mode 100644 index a8c7448..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties deleted file mode 100644 index 845f275..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8ff54f47 -build.xml.script.CRC32=d4269e02 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8ff54f47 -nbproject/build-impl.xml.script.CRC32=c52ac636 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties deleted file mode 100644 index 777d12c..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2.8menuA.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2.pkg8menua.Exam28menuA -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml b/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml deleted file mode 100644 index 529bffc..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2.8menuA - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java deleted file mode 100644 index 0f01ef7..0000000 --- a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java +++ /dev/null @@ -1,49 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2.pkg8menua; -import java.util.Scanner; -/** - * - * @author THE NET - */ -public class Exam28menuA { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - System.out.println("Меню"); - System.out.println(" 1. Теглене на сума"); - System.out.println(" 2. Промяна на PIN"); - System.out.println(" 3. Проверка на наличност"); - System.out.println(" 4. Настройки"); - System.out.println(" 5. Изход"); - //System.out.print("Изберете възможност (1-5): "); - - Scanner Keyboard = new Scanner(System.in); - - int избор = Keyboard.nextInt(); - String текст; - - do{ - System.out.print("Изберете възможност (1-5): "); - избор = Keyboard.nextInt(); - switch(избор){ // - - case 1: текст = "Вие избрахте 1: Теглене на сума"; break; - case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; - case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; - case 4: текст = "Вие избрахте 4: Настройки"; break; - case 5: текст = "Вие избрахте 5: Изход"; break; - default: текст = "Въвели сте грешен избор!"; -} - - System.out.println(текст ); - } while(избор!=5); -Keyboard.close(); - } - -} diff --git a/1401417015 AngelFlag/exam2/build.xml b/1401417015 AngelFlag/exam2/build.xml deleted file mode 100644 index 5f96f64..0000000 --- a/1401417015 AngelFlag/exam2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2. - - - diff --git a/1401417015 AngelFlag/exam2/manifest.mf b/1401417015 AngelFlag/exam2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2/nbproject/build-impl.xml deleted file mode 100644 index 954c5eb..0000000 --- a/1401417015 AngelFlag/exam2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2/nbproject/genfiles.properties deleted file mode 100644 index 06ea930..0000000 --- a/1401417015 AngelFlag/exam2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=40e58c9c -build.xml.script.CRC32=7d53f411 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=40e58c9c -nbproject/build-impl.xml.script.CRC32=94939251 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2/nbproject/project.properties b/1401417015 AngelFlag/exam2/nbproject/project.properties deleted file mode 100644 index 38d5e5c..0000000 --- a/1401417015 AngelFlag/exam2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2.Exam2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2/nbproject/project.xml b/1401417015 AngelFlag/exam2/nbproject/project.xml deleted file mode 100644 index ded64be..0000000 --- a/1401417015 AngelFlag/exam2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java b/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java deleted file mode 100644 index 53cab9b..0000000 --- a/1401417015 AngelFlag/exam2/src/exam2/Bicycle.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2; - -/** - * - * @author THE NET - */ -public class Bicycle extends Product{ - private String model; - - public Bicycle(String model, double price) { - super(price); - this.model = model; - } - - @Override - public String toString() { - return "Bicycle{" + "model=" + model + "-" + price +'}'; - } - - - -} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Exam2.java b/1401417015 AngelFlag/exam2/src/exam2/Exam2.java deleted file mode 100644 index db636e5..0000000 --- a/1401417015 AngelFlag/exam2/src/exam2/Exam2.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2; - -/** - * - * @author THE NET - */ -public class Exam2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - Ski mySki = new Ski(5.3, 150.5,234.00); - Bicycle myBicycle = new Bicycle("Mountain bike model 345", 468.95); - System.out.println(Products(mySki,myBicycle)); - - System.out.println(""); - - } - - private static double Products(Product pr1,Product pr2){ - return (pr1.getPrice() < pr2.getPrice())? pr1.getPrice() : pr2.getPrice(); - - -} -} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Product.java b/1401417015 AngelFlag/exam2/src/exam2/Product.java deleted file mode 100644 index c305e59..0000000 --- a/1401417015 AngelFlag/exam2/src/exam2/Product.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2; - -/** - * - * @author THE NET - */ -public class Product { - - protected double price; - - public Product(double price) { - this.price = price; - } - - public double getPrice() { - return price; - } - -} diff --git a/1401417015 AngelFlag/exam2/src/exam2/Ski.java b/1401417015 AngelFlag/exam2/src/exam2/Ski.java deleted file mode 100644 index 7a67c1f..0000000 --- a/1401417015 AngelFlag/exam2/src/exam2/Ski.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2; - -/** - * - * @author THE NET - */ -public class Ski extends Product { - private double width; - private double length; - - public Ski(double width, double lenght, double price) { - super(price); - this.width = width; - this.length = length; - } - - @Override - public String toString() { - return "Ski{" + "width=" + width + ", length=" + length + "-" + price + '}'; - } - - -} diff --git a/1401417015 AngelFlag/exam2_10/build.xml b/1401417015 AngelFlag/exam2_10/build.xml deleted file mode 100644 index e08614a..0000000 --- a/1401417015 AngelFlag/exam2_10/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_10. - - - diff --git a/1401417015 AngelFlag/exam2_10/manifest.mf b/1401417015 AngelFlag/exam2_10/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_10/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml deleted file mode 100644 index 8fbde42..0000000 --- a/1401417015 AngelFlag/exam2_10/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties deleted file mode 100644 index b42d640..0000000 --- a/1401417015 AngelFlag/exam2_10/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=ffab03e4 -build.xml.script.CRC32=a74c4f74 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=ffab03e4 -nbproject/build-impl.xml.script.CRC32=2bcf1e0c -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_10/nbproject/project.properties b/1401417015 AngelFlag/exam2_10/nbproject/project.properties deleted file mode 100644 index 287e58d..0000000 --- a/1401417015 AngelFlag/exam2_10/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_10.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_10.Exam2_10 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_10/nbproject/project.xml b/1401417015 AngelFlag/exam2_10/nbproject/project.xml deleted file mode 100644 index bf5ebe9..0000000 --- a/1401417015 AngelFlag/exam2_10/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_10 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java b/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java deleted file mode 100644 index ee6c377..0000000 --- a/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_10; - -/** - * - * @author THE NET - */ -public class Exam2_10 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - double m[] = {1.1,2.2,3.3,4.4,5.5}; //double m[] = new double[5]; - //m[0] = 1.1; - for(double alabala:m) - System.out.println(alabala);//m[1] = 2.2; - - //m[2]=3.3; - //m[3]=4.4; - //m[4]=5.5; -//for(int i=0; i<5; i++) - // System.out.println(m[i]); - //for(int i=0; i - - - - - - - - - - Builds, tests, and runs the project exam2_11. - - - diff --git a/1401417015 AngelFlag/exam2_11/manifest.mf b/1401417015 AngelFlag/exam2_11/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_11/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml deleted file mode 100644 index 7b957e7..0000000 --- a/1401417015 AngelFlag/exam2_11/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties deleted file mode 100644 index 0a0ea93..0000000 --- a/1401417015 AngelFlag/exam2_11/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=f7b88fc2 -build.xml.script.CRC32=895af904 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=f7b88fc2 -nbproject/build-impl.xml.script.CRC32=e0ecfbcf -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_11/nbproject/project.properties b/1401417015 AngelFlag/exam2_11/nbproject/project.properties deleted file mode 100644 index c63106f..0000000 --- a/1401417015 AngelFlag/exam2_11/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_11.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_11.Exam2_11 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_11/nbproject/project.xml b/1401417015 AngelFlag/exam2_11/nbproject/project.xml deleted file mode 100644 index a5ed6a8..0000000 --- a/1401417015 AngelFlag/exam2_11/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_11 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java deleted file mode 100644 index 13d65b1..0000000 --- a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_11; -//import java.util.Scanner; -/** - * - * @author THE NET - */ -public class Exam2_11 { - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - int[] myArray = {1,2,3,4,5}; - int[] array = {1,2,3,4,5}; - m1(myArray); - m2(array); - } - - public static void m1(int[] m) { - - for (int i=0; i=0; i--){ - System.out.println(n[i]); - - } - } - -//Scanner inphut = new Scanner(System.in); - //int n = input.nextInt(); - //int[] array = new int[n]; - -//for(int i= 0; i < n; i++) { - //array[i] = input.nextInt(); - - } - -} -} diff --git a/1401417015 AngelFlag/exam2_11/src/java/util/input.java b/1401417015 AngelFlag/exam2_11/src/java/util/input.java deleted file mode 100644 index 7c02ef6..0000000 --- a/1401417015 AngelFlag/exam2_11/src/java/util/input.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package java.util; - -/** - * - * @author THE NET - */ -public class input { - -} diff --git a/1401417015 AngelFlag/exam2_1a/build.xml b/1401417015 AngelFlag/exam2_1a/build.xml deleted file mode 100644 index 7754b00..0000000 --- a/1401417015 AngelFlag/exam2_1a/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_1a. - - - diff --git a/1401417015 AngelFlag/exam2_1a/manifest.mf b/1401417015 AngelFlag/exam2_1a/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_1a/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml deleted file mode 100644 index 5baacf5..0000000 --- a/1401417015 AngelFlag/exam2_1a/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties deleted file mode 100644 index f74b0fb..0000000 --- a/1401417015 AngelFlag/exam2_1a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=1ff04ee1 -build.xml.script.CRC32=5bd02908 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=1ff04ee1 -nbproject/build-impl.xml.script.CRC32=f45c0cd8 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.properties b/1401417015 AngelFlag/exam2_1a/nbproject/project.properties deleted file mode 100644 index 2550bc7..0000000 --- a/1401417015 AngelFlag/exam2_1a/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_1a.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_1a.Exam2_1a -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1a/nbproject/project.xml b/1401417015 AngelFlag/exam2_1a/nbproject/project.xml deleted file mode 100644 index a2599bd..0000000 --- a/1401417015 AngelFlag/exam2_1a/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_1a - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java deleted file mode 100644 index 134cf09..0000000 --- a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_1a; - -/** - * - * @author THE NET - */ -public class Exam2_1a { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int i = 1; - while(i<11) - { - System.out.println(i); - i=i+1; - } -} -} - diff --git a/1401417015 AngelFlag/exam2_1c/build.xml b/1401417015 AngelFlag/exam2_1c/build.xml deleted file mode 100644 index 01c16fb..0000000 --- a/1401417015 AngelFlag/exam2_1c/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_1c. - - - diff --git a/1401417015 AngelFlag/exam2_1c/manifest.mf b/1401417015 AngelFlag/exam2_1c/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_1c/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml deleted file mode 100644 index 48b5312..0000000 --- a/1401417015 AngelFlag/exam2_1c/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties deleted file mode 100644 index 3b01543..0000000 --- a/1401417015 AngelFlag/exam2_1c/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=0fd756ad -build.xml.script.CRC32=07fd45e8 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=0fd756ad -nbproject/build-impl.xml.script.CRC32=b96ac11f -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.properties b/1401417015 AngelFlag/exam2_1c/nbproject/project.properties deleted file mode 100644 index 38a724f..0000000 --- a/1401417015 AngelFlag/exam2_1c/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_1c.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_1c.Exam2_1c -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_1c/nbproject/project.xml b/1401417015 AngelFlag/exam2_1c/nbproject/project.xml deleted file mode 100644 index f545d13..0000000 --- a/1401417015 AngelFlag/exam2_1c/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_1c - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java deleted file mode 100644 index 071a91f..0000000 --- a/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_1c; - -/** - * - * @author THE NET - */ -public class Exam2_1c { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - for(int i=1; i<91; i++){ - System.out.println(i); - - } -} - - } - diff --git a/1401417015 AngelFlag/exam2_2/build.xml b/1401417015 AngelFlag/exam2_2/build.xml deleted file mode 100644 index accb390..0000000 --- a/1401417015 AngelFlag/exam2_2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_2. - - - diff --git a/1401417015 AngelFlag/exam2_2/manifest.mf b/1401417015 AngelFlag/exam2_2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml deleted file mode 100644 index f3aeb71..0000000 --- a/1401417015 AngelFlag/exam2_2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties deleted file mode 100644 index 89a1978..0000000 --- a/1401417015 AngelFlag/exam2_2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=465e91f2 -build.xml.script.CRC32=700d4eef -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=465e91f2 -nbproject/build-impl.xml.script.CRC32=95870d2f -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.properties b/1401417015 AngelFlag/exam2_2/nbproject/project.properties deleted file mode 100644 index fa6b646..0000000 --- a/1401417015 AngelFlag/exam2_2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_2.Exam2_2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_2/nbproject/project.xml b/1401417015 AngelFlag/exam2_2/nbproject/project.xml deleted file mode 100644 index 11bcc70..0000000 --- a/1401417015 AngelFlag/exam2_2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java deleted file mode 100644 index 664c1c3..0000000 --- a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_2; - -/** - * - * @author THE NET - */ -public class Exam2_2 { -//otpechataite chislata ot 1 do 20 v obraten red - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - for(int i=20; i>1; i=i-1) - - System.out.println(i); - } - -} diff --git a/1401417015 AngelFlag/exam2_3/build.xml b/1401417015 AngelFlag/exam2_3/build.xml deleted file mode 100644 index f0d12c2..0000000 --- a/1401417015 AngelFlag/exam2_3/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_3. - - - diff --git a/1401417015 AngelFlag/exam2_3/manifest.mf b/1401417015 AngelFlag/exam2_3/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_3/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml deleted file mode 100644 index 614fab2..0000000 --- a/1401417015 AngelFlag/exam2_3/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties deleted file mode 100644 index d680479..0000000 --- a/1401417015 AngelFlag/exam2_3/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=4e4d1dd4 -build.xml.script.CRC32=ee8e34eb -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=4e4d1dd4 -nbproject/build-impl.xml.script.CRC32=0df91ff8 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_3/nbproject/project.properties b/1401417015 AngelFlag/exam2_3/nbproject/project.properties deleted file mode 100644 index 1e18f64..0000000 --- a/1401417015 AngelFlag/exam2_3/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_3.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_3.Exam2_3 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_3/nbproject/project.xml b/1401417015 AngelFlag/exam2_3/nbproject/project.xml deleted file mode 100644 index 2633cec..0000000 --- a/1401417015 AngelFlag/exam2_3/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_3 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java b/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java deleted file mode 100644 index 5937382..0000000 --- a/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java +++ /dev/null @@ -1,28 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_3; - -/** - * - * @author THE NET - */ -public class Exam2_3 { - - /** - * @param args the command line arguments - */ - //Отпечатайте 5 пъти буквата ‘а’ и веднага след това 10 пъти ‘б’. - public static void main(String[] args) { - int i; - for(i=1; i<=5; i++); - - System.out.println("a"); - for(i=1; i<=10; i--); - System.out.println("B"); - - } - -} diff --git a/1401417015 AngelFlag/exam2_4.1/build.xml b/1401417015 AngelFlag/exam2_4.1/build.xml deleted file mode 100644 index 05c2020..0000000 --- a/1401417015 AngelFlag/exam2_4.1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_4.1. - - - diff --git a/1401417015 AngelFlag/exam2_4.1/manifest.mf b/1401417015 AngelFlag/exam2_4.1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_4.1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml deleted file mode 100644 index 3542dee..0000000 --- a/1401417015 AngelFlag/exam2_4.1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties deleted file mode 100644 index be3a817..0000000 --- a/1401417015 AngelFlag/exam2_4.1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=fc1fadad -build.xml.script.CRC32=01344ab2 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=fc1fadad -nbproject/build-impl.xml.script.CRC32=a930b999 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties b/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties deleted file mode 100644 index 6d66ef2..0000000 --- a/1401417015 AngelFlag/exam2_4.1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_4.1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_4.pkg1.Exam2_41 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml b/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml deleted file mode 100644 index c01ff83..0000000 --- a/1401417015 AngelFlag/exam2_4.1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_4.1 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java deleted file mode 100644 index f9889d7..0000000 --- a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_4.pkg1; - -/** - * - * @author THE NET - */ - -public class Exam2_41 { - - public static void max1(int i1, int i2){ - int max = i1; - if (max < i2) - max = i2; - - System.out.println(max); - } - //Създайте метод, който извежда максималното от две цели числа зададени като формални параметри. - //Извикайте метода в основната програма. - - public static void main(String[] args) { - max1(2,25); - max1(1,23); - max1(34,4); - - } diff --git a/1401417015 AngelFlag/exam2_41a/build.xml b/1401417015 AngelFlag/exam2_41a/build.xml deleted file mode 100644 index 0cbb6c0..0000000 --- a/1401417015 AngelFlag/exam2_41a/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_41a. - - - diff --git a/1401417015 AngelFlag/exam2_41a/manifest.mf b/1401417015 AngelFlag/exam2_41a/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_41a/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml deleted file mode 100644 index 7b1faec..0000000 --- a/1401417015 AngelFlag/exam2_41a/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties deleted file mode 100644 index 39e75c3..0000000 --- a/1401417015 AngelFlag/exam2_41a/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=2c76704d -build.xml.script.CRC32=0c1fa53a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=2c76704d -nbproject/build-impl.xml.script.CRC32=de5c24a8 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/project.properties b/1401417015 AngelFlag/exam2_41a/nbproject/project.properties deleted file mode 100644 index 3d51c90..0000000 --- a/1401417015 AngelFlag/exam2_41a/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_41a.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_41a.Exam2_41a -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_41a/nbproject/project.xml b/1401417015 AngelFlag/exam2_41a/nbproject/project.xml deleted file mode 100644 index ad61c05..0000000 --- a/1401417015 AngelFlag/exam2_41a/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_41a - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java b/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java deleted file mode 100644 index c70bcaa..0000000 --- a/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_41a; - -/** - * - * @author THE NET - */ -public class Exam2_41a { - - public static void printMax(float number1, float number2){ - - float max = number1; - if(number2 > number1) { - max = number2; - } - System.out.println("Max number is:" + max); - } - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - printMax(2,23); - printMax(12312,12132); - printMax(1,22); - - } -} diff --git a/1401417015 AngelFlag/exam2_5task5/build.xml b/1401417015 AngelFlag/exam2_5task5/build.xml deleted file mode 100644 index 243e1cc..0000000 --- a/1401417015 AngelFlag/exam2_5task5/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_5task5. - - - diff --git a/1401417015 AngelFlag/exam2_5task5/manifest.mf b/1401417015 AngelFlag/exam2_5task5/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_5task5/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml deleted file mode 100644 index addbc87..0000000 --- a/1401417015 AngelFlag/exam2_5task5/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties deleted file mode 100644 index 4e11d6e..0000000 --- a/1401417015 AngelFlag/exam2_5task5/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8e0a8e4c -build.xml.script.CRC32=c80a1ecb -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8e0a8e4c -nbproject/build-impl.xml.script.CRC32=81ab315c -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties b/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties deleted file mode 100644 index 0abe4fd..0000000 --- a/1401417015 AngelFlag/exam2_5task5/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_5task5.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_5task5.Exam2_5task5 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml b/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml deleted file mode 100644 index 5bfc0d4..0000000 --- a/1401417015 AngelFlag/exam2_5task5/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_5task5 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java b/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java deleted file mode 100644 index afdc199..0000000 --- a/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_5task5; - -/** - * - * @author THE NET - */ -import java.util.*; - -public class Exam2_5task5 { - //Зад. 5 - СР -//Като използвате функцията max от зад. 4.2. -//създайте основна програма s три цели числа от конзолата и намирате, максималното от тях. - - public static void max1(int a, int b, int c){ - - int max = (a > b && a > c) ? a : ((b > a && b > c) ? b : c); - System.out.println(max); - } - - public static void main(String[] args) { - - Scanner scanner = new Scanner(System.in); - - System.out.print("Въведете a= "); - int a = scanner.nextInt(); - - System.out.print("Въведете b = "); - int b = scanner.nextInt(); - - System.out.print("Вуведете c = "); - int c = scanner.nextInt(); - - scanner.close(); - - max1(a,b,c); - - } -} diff --git a/1401417015 AngelFlag/exam2_6/build.xml b/1401417015 AngelFlag/exam2_6/build.xml deleted file mode 100644 index 4d140a3..0000000 --- a/1401417015 AngelFlag/exam2_6/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_6. - - - diff --git a/1401417015 AngelFlag/exam2_6/manifest.mf b/1401417015 AngelFlag/exam2_6/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_6/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml deleted file mode 100644 index d4133ae..0000000 --- a/1401417015 AngelFlag/exam2_6/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties deleted file mode 100644 index dd22821..0000000 --- a/1401417015 AngelFlag/exam2_6/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=6610a16a -build.xml.script.CRC32=6793ac3c -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=6610a16a -nbproject/build-impl.xml.script.CRC32=99ec4cb0 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_6/nbproject/project.properties b/1401417015 AngelFlag/exam2_6/nbproject/project.properties deleted file mode 100644 index 33a7a42..0000000 --- a/1401417015 AngelFlag/exam2_6/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_6.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_6.Exam2_6 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_6/nbproject/project.xml b/1401417015 AngelFlag/exam2_6/nbproject/project.xml deleted file mode 100644 index 80e1de9..0000000 --- a/1401417015 AngelFlag/exam2_6/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_6 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java deleted file mode 100644 index 1825164..0000000 --- a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_6; - -import java.util.Scanner; - -/** - * - * @author THE NET - */ -public class Exam2_6 { - - public static void m1(int a, int b){ - - int m = a; - if (m > b) - m = b; - // - - System.out.println(m); - //m=m+1; - } - public static void main(String[] args) { - Scanner scanner = new Scanner(System.in); - - System.out.println("Въведете стойност за a:"); - int a = scanner.nextInt(); - - System.out.println("Въведете стойност за b:"); - int b = scanner.nextInt(); - - scanner.close(); - - m1(a,b); - } - -} diff --git a/1401417015 AngelFlag/exam2_7menu/build.xml b/1401417015 AngelFlag/exam2_7menu/build.xml deleted file mode 100644 index ffee000..0000000 --- a/1401417015 AngelFlag/exam2_7menu/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_7menu. - - - diff --git a/1401417015 AngelFlag/exam2_7menu/manifest.mf b/1401417015 AngelFlag/exam2_7menu/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_7menu/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml deleted file mode 100644 index 33cfa19..0000000 --- a/1401417015 AngelFlag/exam2_7menu/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties deleted file mode 100644 index ecc154a..0000000 --- a/1401417015 AngelFlag/exam2_7menu/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=2b5114d5 -build.xml.script.CRC32=07ea05b8 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=2b5114d5 -nbproject/build-impl.xml.script.CRC32=092b2151 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties b/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties deleted file mode 100644 index 72949d5..0000000 --- a/1401417015 AngelFlag/exam2_7menu/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_7menu.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_7menu.Exam2_7menu -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml b/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml deleted file mode 100644 index 5bc4ce7..0000000 --- a/1401417015 AngelFlag/exam2_7menu/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_7menu - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java deleted file mode 100644 index 16ffdae..0000000 --- a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_7menu; -import java.util.Scanner; -/** - * - * @author THE NET - */ -public class Exam2_7menu { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - System.out.println("Меню"); // Извеждане на менюто в конзолата - System.out.println(" 1. Теглене на сума"); - System.out.println(" 2. Промяна на PIN"); - System.out.println(" 3. Проверка на наличност"); - System.out.println(" 4. Настройки"); - System.out.println(" 5. Изход"); - System.out.print("Изберете възможност (1-5): "); - - Scanner Keyboard = new Scanner(System.in); - int избор = Keyboard.nextInt(); - - String текст; - switch(избор){ // В зависимост от стойността на „избор”... - case 1: текст = "Вие избрахте 1: Теглене на сума"; break; - case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; - case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; - case 4: текст = "Вие избрахте 4: Настройки"; break; - case 5: текст = "Вие избрахте 5: Изход"; break; - default: текст = "Въвели сте грешен избор!"; -} - System.out.println(текст ); - Keyboard.close(); - - } - -} diff --git a/1401417015 AngelFlag/exam2_9/build.xml b/1401417015 AngelFlag/exam2_9/build.xml deleted file mode 100644 index 6075e42..0000000 --- a/1401417015 AngelFlag/exam2_9/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2_9. - - - diff --git a/1401417015 AngelFlag/exam2_9/manifest.mf b/1401417015 AngelFlag/exam2_9/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2_9/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml deleted file mode 100644 index 08946c0..0000000 --- a/1401417015 AngelFlag/exam2_9/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties deleted file mode 100644 index 35d3017..0000000 --- a/1401417015 AngelFlag/exam2_9/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=1ef664a8 -build.xml.script.CRC32=27c40304 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=1ef664a8 -nbproject/build-impl.xml.script.CRC32=fea2bf29 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2_9/nbproject/project.properties b/1401417015 AngelFlag/exam2_9/nbproject/project.properties deleted file mode 100644 index f758b4e..0000000 --- a/1401417015 AngelFlag/exam2_9/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2_9.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2_9.Exam2_9 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2_9/nbproject/project.xml b/1401417015 AngelFlag/exam2_9/nbproject/project.xml deleted file mode 100644 index 7444d8a..0000000 --- a/1401417015 AngelFlag/exam2_9/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2_9 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java b/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java deleted file mode 100644 index 865f5ad..0000000 --- a/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java +++ /dev/null @@ -1,59 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam2_9; -import java.util.Scanner; -/** - * - * @author THE NET - */ -public class Exam2_9 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - System.out.println("Изберете число от едно до дванадесет:"); - //System.out.println ("1 ");//= Януари - //System.out.println ("2"); //= Февруари - //System.out.println ("3"); //= Март - //System.out.println ("4"); //= Април - //System.out.println ("5"); //= Май - //System.out.println ("6"); //= Юни - //System.out.println ("7"); //= Юли - //System.out.println ("8"); //= Август - //System.out.println ("9");//= Септември - //System.out.println ("10");// = Октомври - //System.out.println ("11");//; = Ноември - //System.out.println ("12"); //= Декември - - - Scanner Keyboard = new Scanner(System.in); - int избор = Keyboard.nextInt(); - String Текст; - - do{ - System.out.println("Изберете число от едно до дванадесет"); - избор= Keyboard.nextInt(); - switch(избор){ - case 1: Текст = "Вие избрахте 1 - Януари"; break; - case 2: Текст = "Вие избрахте 2 - Февруари";break; - case 3: Текст = "Вие избрахте 3 - Март"; break; - case 4: Текст = "Вие избрахте 4 - Април";break; - case 5: Текст = "Вие избрахте 5 - МАй";break; - case 6: Текст = "Вие избрахте 6 - Юни";break; - case 7: Текст = "Вие избрахте 7 - Юли";break; - case 8: Текст = "Вие избрахте 8 - Август";break; - case 9: Текст = "Вие избрахте 9 - Септември";break; - case 10: Текст = "Вие избрахте 10 - Октомври";break; - case 11: Текст = "Вие избрахте 11 - Ноември";break; - case 12: Текст = "Вие избрахте 12 - Декември";break; - default: Текст = "Въведете число от едно до дванадесет!"; - } - System.out.println(Текст); - }while(избор!=13); - Keyboard.close(); - } -} diff --git a/1401417015 AngelFlag/exam2task2/build.xml b/1401417015 AngelFlag/exam2task2/build.xml deleted file mode 100644 index 1904195..0000000 --- a/1401417015 AngelFlag/exam2task2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam2task2. - - - diff --git a/1401417015 AngelFlag/exam2task2/manifest.mf b/1401417015 AngelFlag/exam2task2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam2task2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml deleted file mode 100644 index 3f8f1ac..0000000 --- a/1401417015 AngelFlag/exam2task2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties deleted file mode 100644 index e6b6114..0000000 --- a/1401417015 AngelFlag/exam2task2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=135406b5 -build.xml.script.CRC32=3664a105 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=135406b5 -nbproject/build-impl.xml.script.CRC32=dbdfbd71 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam2task2/nbproject/project.properties b/1401417015 AngelFlag/exam2task2/nbproject/project.properties deleted file mode 100644 index 2cc2d52..0000000 --- a/1401417015 AngelFlag/exam2task2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam2task2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam2task2.Exam2task2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam2task2/nbproject/project.xml b/1401417015 AngelFlag/exam2task2/nbproject/project.xml deleted file mode 100644 index 049b447..0000000 --- a/1401417015 AngelFlag/exam2task2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam2task2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java deleted file mode 100644 index e61b616..0000000 --- a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java +++ /dev/null @@ -1,26 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -package exam2task2; - -/** - * - * @author THE NET - */ -public class Exam2task2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - - for(int i=22; i>1; i=i-2) - - System.out.println(i); - } - } - diff --git a/1401417015 AngelFlag/exam3_1/build.xml b/1401417015 AngelFlag/exam3_1/build.xml deleted file mode 100644 index 95b2656..0000000 --- a/1401417015 AngelFlag/exam3_1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam3_1. - - - diff --git a/1401417015 AngelFlag/exam3_1/manifest.mf b/1401417015 AngelFlag/exam3_1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam3_1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml deleted file mode 100644 index fe1941c..0000000 --- a/1401417015 AngelFlag/exam3_1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties deleted file mode 100644 index f124158..0000000 --- a/1401417015 AngelFlag/exam3_1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=79ba41a4 -build.xml.script.CRC32=dc450507 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=79ba41a4 -nbproject/build-impl.xml.script.CRC32=dbb486f9 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_1/nbproject/project.properties b/1401417015 AngelFlag/exam3_1/nbproject/project.properties deleted file mode 100644 index 551f4da..0000000 --- a/1401417015 AngelFlag/exam3_1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam3_1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam3_1.Exam3_1 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_1/nbproject/project.xml b/1401417015 AngelFlag/exam3_1/nbproject/project.xml deleted file mode 100644 index 624c96c..0000000 --- a/1401417015 AngelFlag/exam3_1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam3_1 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java b/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java deleted file mode 100644 index 112e174..0000000 --- a/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam3_1; - -/** - * - * @author THE NET - */ -public class Exam3_1 { - - String Name; //String Name; - int Age; // int Age; - - public Exam3_1(String име, int възраст){ //public Exam3_1(String име, int възраст){ - Name = име; - Age = възраст; - } - public String toString() - { - return "My name is " + Name +" and I am " + Age + " years old"; - } - - public static void main(String[] args) { - Exam3_1 human = new Exam3_1("sadfas",26); - - System.out.print(human); - - // TODO code application logic here - } - -} diff --git a/1401417015 AngelFlag/exam3_2/build.xml b/1401417015 AngelFlag/exam3_2/build.xml deleted file mode 100644 index c347dd2..0000000 --- a/1401417015 AngelFlag/exam3_2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam3_2. - - - diff --git a/1401417015 AngelFlag/exam3_2/manifest.mf b/1401417015 AngelFlag/exam3_2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam3_2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml deleted file mode 100644 index a23ddef..0000000 --- a/1401417015 AngelFlag/exam3_2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties deleted file mode 100644 index 2688f82..0000000 --- a/1401417015 AngelFlag/exam3_2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=618ed5ce -build.xml.script.CRC32=a4b18d4a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=618ed5ce -nbproject/build-impl.xml.script.CRC32=a847b7c1 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_2/nbproject/project.properties b/1401417015 AngelFlag/exam3_2/nbproject/project.properties deleted file mode 100644 index 3b4ac7c..0000000 --- a/1401417015 AngelFlag/exam3_2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam3_2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam3_2.Exam3_2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_2/nbproject/project.xml b/1401417015 AngelFlag/exam3_2/nbproject/project.xml deleted file mode 100644 index b6398a9..0000000 --- a/1401417015 AngelFlag/exam3_2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam3_2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java deleted file mode 100644 index 427ea17..0000000 --- a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam3_2; - -/** - * - * @author THE NET - */ -public class Exam3_2 { - - /** - * @param args the command line arguments - */ - - public static void srednoAritm(double m[]){ - - double suma = 0; - for (int i = 0; i < m.length; i++) - suma += m[i]; - - double rezultat = suma / m.length; - System.out.println("Средно аритметичната сума е: " + rezultat); - } - - public static void main(String[] args) { - double m[] = {4.8,-4.1,5,-2,7}; - - srednoAritm(m); - -} -} diff --git a/1401417015 AngelFlag/exam3_3/build.xml b/1401417015 AngelFlag/exam3_3/build.xml deleted file mode 100644 index d41aaaf..0000000 --- a/1401417015 AngelFlag/exam3_3/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam3_3. - - - diff --git a/1401417015 AngelFlag/exam3_3/manifest.mf b/1401417015 AngelFlag/exam3_3/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam3_3/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml deleted file mode 100644 index a0d9619..0000000 --- a/1401417015 AngelFlag/exam3_3/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties deleted file mode 100644 index 0ea2f02..0000000 --- a/1401417015 AngelFlag/exam3_3/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=699d59e8 -build.xml.script.CRC32=3a32f74e -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=699d59e8 -nbproject/build-impl.xml.script.CRC32=3039a516 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam3_3/nbproject/project.properties b/1401417015 AngelFlag/exam3_3/nbproject/project.properties deleted file mode 100644 index fbc1dab..0000000 --- a/1401417015 AngelFlag/exam3_3/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam3_3.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam3_3.Exam3_3 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam3_3/nbproject/project.xml b/1401417015 AngelFlag/exam3_3/nbproject/project.xml deleted file mode 100644 index 5e31528..0000000 --- a/1401417015 AngelFlag/exam3_3/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam3_3 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java b/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java deleted file mode 100644 index 6bfbca9..0000000 --- a/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam3_3; - -/** - * - * @author THE NET - */ -public class Exam3_3 { - - /** - * @param args the command line arguments - */ - - - public static void sumPluselem(double m[]){ - double suma = 0; - for (int i = 0; i < m.length; i++) - if (m[i] > 0) - suma += m[i]; - - System.out.println("Сумата на положителните елементи: " + suma); - - } - public static void main(String[] args) { - double m[] = {4.8,-4.1,5,-2,7}; - - sumPluselem(m); - } - -} diff --git a/1401417015 AngelFlag/exam4_1/build.xml b/1401417015 AngelFlag/exam4_1/build.xml deleted file mode 100644 index b294262..0000000 --- a/1401417015 AngelFlag/exam4_1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam4_1. - - - diff --git a/1401417015 AngelFlag/exam4_1/manifest.mf b/1401417015 AngelFlag/exam4_1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam4_1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml deleted file mode 100644 index 097af78..0000000 --- a/1401417015 AngelFlag/exam4_1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties deleted file mode 100644 index 39cdd51..0000000 --- a/1401417015 AngelFlag/exam4_1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8e8b9d10 -build.xml.script.CRC32=9ee045bf -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8e8b9d10 -nbproject/build-impl.xml.script.CRC32=6af7a273 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_1/nbproject/project.properties b/1401417015 AngelFlag/exam4_1/nbproject/project.properties deleted file mode 100644 index d1b1c63..0000000 --- a/1401417015 AngelFlag/exam4_1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam4_1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam4_1.Exam4_1 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_1/nbproject/project.xml b/1401417015 AngelFlag/exam4_1/nbproject/project.xml deleted file mode 100644 index 2121800..0000000 --- a/1401417015 AngelFlag/exam4_1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam4_1 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java b/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java deleted file mode 100644 index 83e1cbf..0000000 --- a/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam4_1; - -/** - * - * @author THE NET - */ -public class Exam4_1 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - String imena[] = {"Иван","Мария","Петър","Ивайло","Марин","Ивдианаполис"}; - низовеЗапочващиС(imena, "Ив"); - - } - public static void низовеЗапочващиС(String m[], String search){ - System.out.println("Низове започващи с " + search + ":"); - - for(int i=0; i - - - - - - - - - - Builds, tests, and runs the project exam4_2. - - - diff --git a/1401417015 AngelFlag/exam4_2/manifest.mf b/1401417015 AngelFlag/exam4_2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam4_2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml deleted file mode 100644 index bb6e379..0000000 --- a/1401417015 AngelFlag/exam4_2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties deleted file mode 100644 index 7a28d79..0000000 --- a/1401417015 AngelFlag/exam4_2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=96bf097a -build.xml.script.CRC32=e614cdf2 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=96bf097a -nbproject/build-impl.xml.script.CRC32=1904934b -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_2/nbproject/project.properties b/1401417015 AngelFlag/exam4_2/nbproject/project.properties deleted file mode 100644 index 40ea6c2..0000000 --- a/1401417015 AngelFlag/exam4_2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam4_2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam4_2.Exam4_2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_2/nbproject/project.xml b/1401417015 AngelFlag/exam4_2/nbproject/project.xml deleted file mode 100644 index 3852f8e..0000000 --- a/1401417015 AngelFlag/exam4_2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam4_2 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java deleted file mode 100644 index 2f4ba87..0000000 --- a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam4_2; - -/** - * - * @author THE NET - */ -public class Exam4_2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; - низовеЗапочващиС(imena, "и"); - } - - public static void низовеЗапочващиС(String m[], String search){ - System.out.println("Елементи съдържащи 'и'" + search + ":"); - - for (int i=0; i - - - - - - - - - - Builds, tests, and runs the project exam4_3. - - - diff --git a/1401417015 AngelFlag/exam4_3/manifest.mf b/1401417015 AngelFlag/exam4_3/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam4_3/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml deleted file mode 100644 index 3015af4..0000000 --- a/1401417015 AngelFlag/exam4_3/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties deleted file mode 100644 index 1a94e38..0000000 --- a/1401417015 AngelFlag/exam4_3/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=9eac855c -build.xml.script.CRC32=7897b7f6 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=9eac855c -nbproject/build-impl.xml.script.CRC32=817a819c -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_3/nbproject/project.properties b/1401417015 AngelFlag/exam4_3/nbproject/project.properties deleted file mode 100644 index acb13ad..0000000 --- a/1401417015 AngelFlag/exam4_3/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam4_3.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam4_3.Exam4_3 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_3/nbproject/project.xml b/1401417015 AngelFlag/exam4_3/nbproject/project.xml deleted file mode 100644 index 8bcd83e..0000000 --- a/1401417015 AngelFlag/exam4_3/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam4_3 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java b/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java deleted file mode 100644 index d068fe0..0000000 --- a/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam4_3; - -/** - * - * @author THE NET - */ -public class Exam4_3 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; - низовеЗавършващи(imena, "ин"); - // За масив от низове, изведете елементите завършващи с "ин" - } - public static void низовеЗавършващи(String m[], String search){ - System.out.println("низовеЗавършващи s " + search + ":"); - - for (int i=0; i - - - - - - - - - - Builds, tests, and runs the project exam4_5. - - - diff --git a/1401417015 AngelFlag/exam4_5/manifest.mf b/1401417015 AngelFlag/exam4_5/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam4_5/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml deleted file mode 100644 index e6cf92c..0000000 --- a/1401417015 AngelFlag/exam4_5/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties deleted file mode 100644 index 09aca61..0000000 --- a/1401417015 AngelFlag/exam4_5/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=aec5ad88 -build.xml.script.CRC32=897ea76c -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=aec5ad88 -nbproject/build-impl.xml.script.CRC32=669ce3ec -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam4_5/nbproject/project.properties b/1401417015 AngelFlag/exam4_5/nbproject/project.properties deleted file mode 100644 index e603111..0000000 --- a/1401417015 AngelFlag/exam4_5/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam4_5.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam4_5.Exam4_5 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam4_5/nbproject/project.xml b/1401417015 AngelFlag/exam4_5/nbproject/project.xml deleted file mode 100644 index 8bf669f..0000000 --- a/1401417015 AngelFlag/exam4_5/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam4_5 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java b/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java deleted file mode 100644 index 6771aa8..0000000 --- a/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam4_5; - -/** - * - * @author THE NET - */ -public class Exam4_5 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - System.out.println(факториелЦикъл(4)); - System.out.println(факториелРекурсия(4)); - } - - public static long факториелЦикъл(int num) { - long result = 1; - - for (int i = 2; i <= num; i++) - result *= i; - - return result; - } - - public static long факториелРекурсия(int num) { - if(num<2) // Условие за край - прекъсване на рекурсията - return 1; - - return num*факториелРекурсия(num-1); - - } - -} diff --git a/1401417015 AngelFlag/exam5_1/build.xml b/1401417015 AngelFlag/exam5_1/build.xml deleted file mode 100644 index 9e060b3..0000000 --- a/1401417015 AngelFlag/exam5_1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam5_1. - - - diff --git a/1401417015 AngelFlag/exam5_1/manifest.mf b/1401417015 AngelFlag/exam5_1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam5_1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml deleted file mode 100644 index c2bbeb0..0000000 --- a/1401417015 AngelFlag/exam5_1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties deleted file mode 100644 index d3ea423..0000000 --- a/1401417015 AngelFlag/exam5_1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=a95bd92c -build.xml.script.CRC32=4a5c861a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=a95bd92c -nbproject/build-impl.xml.script.CRC32=5737189d -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_1/nbproject/project.properties b/1401417015 AngelFlag/exam5_1/nbproject/project.properties deleted file mode 100644 index a15e805..0000000 --- a/1401417015 AngelFlag/exam5_1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam5_1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam5_1.Exam5_1 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_1/nbproject/project.xml b/1401417015 AngelFlag/exam5_1/nbproject/project.xml deleted file mode 100644 index bfbe2a3..0000000 --- a/1401417015 AngelFlag/exam5_1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam5_1 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java deleted file mode 100644 index 6cb7282..0000000 --- a/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_1; - -/** - * - * @author THE NET - */ -public class Exam5_1 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - Person Angel = new Person(); - Angel.name = "Angel"; - Angel.surname = "Bayraktarov"; - Angel.age = 34; - - System.out.println("I am a person! My name is " + Angel.name + " " + Angel.surname + " and I am " + Angel.age + " old"); - } - -} diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java deleted file mode 100644 index 534d9f1..0000000 --- a/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java +++ /dev/null @@ -1,17 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_1; - -/** - * - * @author THE NET - */ -public class Person { - public String name; - public String surname; - public int age; - -} diff --git a/1401417015 AngelFlag/exam5_3/build.xml b/1401417015 AngelFlag/exam5_3/build.xml deleted file mode 100644 index 0cbe18a..0000000 --- a/1401417015 AngelFlag/exam5_3/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam5_3. - - - diff --git a/1401417015 AngelFlag/exam5_3/manifest.mf b/1401417015 AngelFlag/exam5_3/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam5_3/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml deleted file mode 100644 index c7c2a70..0000000 --- a/1401417015 AngelFlag/exam5_3/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties deleted file mode 100644 index 9793069..0000000 --- a/1401417015 AngelFlag/exam5_3/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=b97cc160 -build.xml.script.CRC32=ac2b7453 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=b97cc160 -nbproject/build-impl.xml.script.CRC32=bcba3b72 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_3/nbproject/project.properties b/1401417015 AngelFlag/exam5_3/nbproject/project.properties deleted file mode 100644 index 3312005..0000000 --- a/1401417015 AngelFlag/exam5_3/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam5_3.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam5_3.Exam5_3 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_3/nbproject/project.xml b/1401417015 AngelFlag/exam5_3/nbproject/project.xml deleted file mode 100644 index 76a5a9c..0000000 --- a/1401417015 AngelFlag/exam5_3/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam5_3 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java deleted file mode 100644 index a5c95cf..0000000 --- a/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_3; - -/** - * - * @author THE NET - */ -public class Exam5_3 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - Person Angel = new Person("Angel","Bayraktarov", 30); - //Angel.name = "Angel"; - //Angel.age = 33; - //Angel.setName("Angel"); - //Angel.setSurname("Bayraktarov"); - //Angel.setAge(33); - Angel.introduceYourself(); - - //System.out.println("I am a person! My name is " + Angel.getName() + " " + Angel.getSurname() + " and I am " + Angel.getAge() + " Old"); - - Person Nina = new Person("Nina", "Genov", 30); - //Nina.setName("Nina"); - //Nina.setSurname("Genov"); - //Nina.setAge(30); - Nina.introduceYourself(); - //System.out.println("I am a person! My name is " + Nina.getName() + " " + Nina.getSurname() + " and I am " + Nina.getAge() + " Old"); - - Person Ivan = new Person(); - Ivan.introduceYourself(); - } - - -} diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java deleted file mode 100644 index 292f547..0000000 --- a/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java +++ /dev/null @@ -1,56 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_3; - -/** - * - * @author THE NET - */ -public class Person { - private String name; - private String surname; - private int age; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public int getAge() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public String getSurname() { - return surname; - } - - public void setSurname(String surname) { - this.surname = surname; - } - - public Person(String name, String surname, int age) { - this.name = name; - this.surname = surname; - this.age = age; - } - - public Person(){ - this("Ivan","Hadj",20); - } - - public void introduceYourself(){ - System.out.println("I am a person! My name is " + name +" " + surname + " and I am " + age + " Old"); - } - - -} diff --git a/1401417015 AngelFlag/exam5_5/build.xml b/1401417015 AngelFlag/exam5_5/build.xml deleted file mode 100644 index ae21b73..0000000 --- a/1401417015 AngelFlag/exam5_5/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam5_5. - - - diff --git a/1401417015 AngelFlag/exam5_5/manifest.mf b/1401417015 AngelFlag/exam5_5/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam5_5/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml deleted file mode 100644 index 256abed..0000000 --- a/1401417015 AngelFlag/exam5_5/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties deleted file mode 100644 index 8c7aba9..0000000 --- a/1401417015 AngelFlag/exam5_5/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=8915e9b4 -build.xml.script.CRC32=5dc264c9 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=8915e9b4 -nbproject/build-impl.xml.script.CRC32=5b5c5902 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_5/nbproject/project.properties b/1401417015 AngelFlag/exam5_5/nbproject/project.properties deleted file mode 100644 index 2221325..0000000 --- a/1401417015 AngelFlag/exam5_5/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam5_5.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam5_5.Exam5_5 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_5/nbproject/project.xml b/1401417015 AngelFlag/exam5_5/nbproject/project.xml deleted file mode 100644 index a951c67..0000000 --- a/1401417015 AngelFlag/exam5_5/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam5_5 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java deleted file mode 100644 index 6d62863..0000000 --- a/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_5; - -/** - * - * @author THE NET - */ -public class Exam5_5 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - Object Alabala = new Object(); - Alabala.object = "Object"; - - System.out.println(Alabala.object); - } - -} diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java deleted file mode 100644 index 4bc9b0a..0000000 --- a/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java +++ /dev/null @@ -1,15 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_5; - -/** - * - * @author THE NET - */ -public class Object { - public String object; - -} diff --git a/1401417015 AngelFlag/exam5_8/build.xml b/1401417015 AngelFlag/exam5_8/build.xml deleted file mode 100644 index 8653bc9..0000000 --- a/1401417015 AngelFlag/exam5_8/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project exam5_8. - - - diff --git a/1401417015 AngelFlag/exam5_8/manifest.mf b/1401417015 AngelFlag/exam5_8/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/exam5_8/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml b/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml deleted file mode 100644 index 04f81a1..0000000 --- a/1401417015 AngelFlag/exam5_8/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties b/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties deleted file mode 100644 index 564da1b..0000000 --- a/1401417015 AngelFlag/exam5_8/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=e1d4343a -build.xml.script.CRC32=fbe239b8 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=e1d4343a -nbproject/build-impl.xml.script.CRC32=d79f8974 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/exam5_8/nbproject/project.properties b/1401417015 AngelFlag/exam5_8/nbproject/project.properties deleted file mode 100644 index 29caf4a..0000000 --- a/1401417015 AngelFlag/exam5_8/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/exam5_8.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=exam5_8.Exam5_8 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/exam5_8/nbproject/project.xml b/1401417015 AngelFlag/exam5_8/nbproject/project.xml deleted file mode 100644 index b314f6d..0000000 --- a/1401417015 AngelFlag/exam5_8/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - exam5_8 - - - - - - - - - diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java deleted file mode 100644 index e55a139..0000000 --- a/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_8; - -/** - * - * @author THE NET - */ -public class Dog { - private String Poroda; - private int age; - - public String getPoroda() { - return Poroda; - } - - public void setPoroda(String Poroda) { - this.Poroda = Poroda; - } - - public int getAge() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public Dog(String Poroda, int age) { - this.Poroda = Poroda; - this.age = age; - } - public void moetoDog(){ - - System.out.println(" и моето куче е " + Poroda + " и е на " + age + " години"); - } - -} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java deleted file mode 100644 index c7c29a4..0000000 --- a/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_8; - -/** - * - * @author THE NET - */ -public class Exam5_8 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - Person Angel = new Person("Angel",30); - - Angel.introduceYourself(); - - Dog sharo = new Dog("Sharo",5); - sharo.moetoDog(); - } - -} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java deleted file mode 100644 index 0cf26ce..0000000 --- a/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package exam5_8; - -/** - * - * @author THE NET - */ -public class Person { - private String name; - private int age; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public int getAge() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public Person(String name, int age) { - this.name = name; - this.age = age; - } - public void introduceYourself(){ - System.out.println("I am a person! My name is " + name + " I am " + age + " Old " ); - } - -} diff --git a/1401417015 AngelFlag/factorial/build.xml b/1401417015 AngelFlag/factorial/build.xml deleted file mode 100644 index fa5f02f..0000000 --- a/1401417015 AngelFlag/factorial/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project factorial. - - - diff --git a/1401417015 AngelFlag/factorial/manifest.mf b/1401417015 AngelFlag/factorial/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/factorial/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/factorial/nbproject/build-impl.xml b/1401417015 AngelFlag/factorial/nbproject/build-impl.xml deleted file mode 100644 index d1c1252..0000000 --- a/1401417015 AngelFlag/factorial/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/factorial/nbproject/genfiles.properties b/1401417015 AngelFlag/factorial/nbproject/genfiles.properties deleted file mode 100644 index 3da7d38..0000000 --- a/1401417015 AngelFlag/factorial/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=865c1925 -build.xml.script.CRC32=7da14078 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=865c1925 -nbproject/build-impl.xml.script.CRC32=1b89d452 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/factorial/nbproject/project.properties b/1401417015 AngelFlag/factorial/nbproject/project.properties deleted file mode 100644 index 743194a..0000000 --- a/1401417015 AngelFlag/factorial/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/factorial.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=factorial.Factorial -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/factorial/nbproject/project.xml b/1401417015 AngelFlag/factorial/nbproject/project.xml deleted file mode 100644 index 98ad074..0000000 --- a/1401417015 AngelFlag/factorial/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - factorial - - - - - - - - - diff --git a/1401417015 AngelFlag/factorial/src/factorial/Factorial.java b/1401417015 AngelFlag/factorial/src/factorial/Factorial.java deleted file mode 100644 index 1bd787e..0000000 --- a/1401417015 AngelFlag/factorial/src/factorial/Factorial.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - - -package factorial; -import java.util.*; - -/** - * - * @author THE NET - */ -public class Factorial { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int n, c, fact = 1; - - System.out.println("Enter an integer to calculate factorial"); - Scanner in = new Scanner(System.in); - n = in.nextInt(); - - if ( n < 0 ) - System.out.println("Number should be non-negative."); - else - { - for ( c = 1 ; c <= n ; c++ ) - fact = fact*c; - - System.out.println("Factorial of "+n+" is = "+fact); - } - -} -} - diff --git a/1401417015 AngelFlag/method/build.xml b/1401417015 AngelFlag/method/build.xml deleted file mode 100644 index f19924c..0000000 --- a/1401417015 AngelFlag/method/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project method. - - - diff --git a/1401417015 AngelFlag/method/manifest.mf b/1401417015 AngelFlag/method/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/method/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/method/nbproject/build-impl.xml b/1401417015 AngelFlag/method/nbproject/build-impl.xml deleted file mode 100644 index 41e7c01..0000000 --- a/1401417015 AngelFlag/method/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/method/nbproject/genfiles.properties b/1401417015 AngelFlag/method/nbproject/genfiles.properties deleted file mode 100644 index ade1a48..0000000 --- a/1401417015 AngelFlag/method/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=30629669 -build.xml.script.CRC32=0a7ad8f0 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=30629669 -nbproject/build-impl.xml.script.CRC32=9e719cde -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/method/nbproject/project.properties b/1401417015 AngelFlag/method/nbproject/project.properties deleted file mode 100644 index 1d19e6d..0000000 --- a/1401417015 AngelFlag/method/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/method.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=method.Method -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/method/nbproject/project.xml b/1401417015 AngelFlag/method/nbproject/project.xml deleted file mode 100644 index 6b65c18..0000000 --- a/1401417015 AngelFlag/method/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - method - - - - - - - - - diff --git a/1401417015 AngelFlag/method/src/method/Method.java b/1401417015 AngelFlag/method/src/method/Method.java deleted file mode 100644 index 4bf6025..0000000 --- a/1401417015 AngelFlag/method/src/method/Method.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package method; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -import java.util.*; -public class Method { -public static final double FAVNUMBER = 1.6180; - -private String name; -private int weight; -private boolean hasOwner = false; -private byte age; -private long uniqueID; -private char favoriteChar; -private double speed; -private float height; - -protected static int numberofAnimals = 0; - -static Scanner userinput = new Scanner(System.in); - -public Animal P() { - numberofAnimals++; - - int sumofNumbers = 5+1; - System.out.println(private) -} - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} diff --git a/1401417015 AngelFlag/nfs/build.xml b/1401417015 AngelFlag/nfs/build.xml deleted file mode 100644 index b46dd1e..0000000 --- a/1401417015 AngelFlag/nfs/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project nfs. - - - diff --git a/1401417015 AngelFlag/nfs/manifest.mf b/1401417015 AngelFlag/nfs/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/nfs/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/nfs/nbproject/build-impl.xml b/1401417015 AngelFlag/nfs/nbproject/build-impl.xml deleted file mode 100644 index 3d3c8e0..0000000 --- a/1401417015 AngelFlag/nfs/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/nfs/nbproject/genfiles.properties b/1401417015 AngelFlag/nfs/nbproject/genfiles.properties deleted file mode 100644 index 68a5f01..0000000 --- a/1401417015 AngelFlag/nfs/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=de28aaca -build.xml.script.CRC32=fb156e1f -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=de28aaca -nbproject/build-impl.xml.script.CRC32=5412882f -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/nfs/nbproject/project.properties b/1401417015 AngelFlag/nfs/nbproject/project.properties deleted file mode 100644 index b98fded..0000000 --- a/1401417015 AngelFlag/nfs/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/nfs.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=nfs.Nfs -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/nfs/nbproject/project.xml b/1401417015 AngelFlag/nfs/nbproject/project.xml deleted file mode 100644 index dbdf597..0000000 --- a/1401417015 AngelFlag/nfs/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - nfs - - - - - - - - - diff --git a/1401417015 AngelFlag/nfs/src/Vehicle.java b/1401417015 AngelFlag/nfs/src/Vehicle.java deleted file mode 100644 index af8fbf3..0000000 --- a/1401417015 AngelFlag/nfs/src/Vehicle.java +++ /dev/null @@ -1,13 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -/** - * - * @author THE NET - */ -class Vehicle { - -} diff --git a/1401417015 AngelFlag/nfs/src/nfs/Drivable.java b/1401417015 AngelFlag/nfs/src/nfs/Drivable.java deleted file mode 100644 index e1be095..0000000 --- a/1401417015 AngelFlag/nfs/src/nfs/Drivable.java +++ /dev/null @@ -1,19 +0,0 @@ -package nfs; - -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -/** - * - * @author THE NET - */ -public interface Drivable { - void turnLeft(); - void turnRgight(); - void breakCar(); - void accelerate(); - -} diff --git a/1401417015 AngelFlag/nfs/src/nfs/Nfs.java b/1401417015 AngelFlag/nfs/src/nfs/Nfs.java deleted file mode 100644 index f12d9b6..0000000 --- a/1401417015 AngelFlag/nfs/src/nfs/Nfs.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package nfs; - -/** - * - * @author THE NET - */ -public class Nfs { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} diff --git a/1401417015 AngelFlag/nfs/src/nfs/SportCar.java b/1401417015 AngelFlag/nfs/src/nfs/SportCar.java deleted file mode 100644 index e33469a..0000000 --- a/1401417015 AngelFlag/nfs/src/nfs/SportCar.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package nfs; - -/** - * - * @author THE NET - */ -public abstract class SportCar extends Vehicle { - public SportCar(String laber){ - setLabel(label); - setType("Sport Car"); - } -} - - @Override - public void turnLeft(){ - -} - @Override - public void turnRight(){ - - } - @Override - public void breakCar(){ - } \ No newline at end of file diff --git a/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java b/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java deleted file mode 100644 index dd10bb1..0000000 --- a/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java +++ /dev/null @@ -1,26 +0,0 @@ -package nfs; - -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - -/** - * - * @author THE NET - */ -public abstract class Vehicle implements Drivable { - private String type; - private String label; - - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - -} diff --git a/1401417015 AngelFlag/oop1_MyWorld/build.xml b/1401417015 AngelFlag/oop1_MyWorld/build.xml deleted file mode 100644 index 520bd74..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project oop1_MyWorld. - - - diff --git a/1401417015 AngelFlag/oop1_MyWorld/manifest.mf b/1401417015 AngelFlag/oop1_MyWorld/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml b/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml deleted file mode 100644 index 3dbf5c2..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties b/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties deleted file mode 100644 index 7f1c291..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=be66a04b -build.xml.script.CRC32=a591477a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=be66a04b -nbproject/build-impl.xml.script.CRC32=d239c40d -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties deleted file mode 100644 index 736bafb..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/oop1_MyWorld.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=oop1_myworld.Oop1_MyWorld -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml b/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml deleted file mode 100644 index 848faf9..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - oop1_MyWorld - - - - - - - - - diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java deleted file mode 100644 index 5036b3b..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package oop1_myworld; - -/** - * - * @author THE NET - */ -public class Athlete { - -} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java deleted file mode 100644 index 9d3f576..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java +++ /dev/null @@ -1,17 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package oop1_myworld; - -/** - * - * @author THE NET - */ -public interface Introduceable { - //public int age = 40; - //public static final double Pi = 3.14; - public void introduceYourself(); - //void mandatadory(int par1, String par2); -} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java deleted file mode 100644 index 3ba314d..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package oop1_myworld; - -/** - * - * @author THE NET - */ -public class Oop1_MyWorld { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - - System.out.println("I am proud with my greatest invention PI " + Person.PI); - // TODO code application logic here - Person angel = new Person("Angel", 30); - //angel.name = "Angel"; - //angel.Age = 33; - //angel.setName("Angel"); - //angel.setAge(33); - //System.out.println("I am a person! My name is " + angel.name + " I am " + angel.Age + " Old"); - //System.out.println("I am a person! My name is " + angel.getName() + " I am " + angel.getage() + " Old"); - angel.introduceYourself(); - - Person mariya = new Person("mariya", 21); - //mariya.name = "Mari - // mariya.Age = 30; - //mariya.setName("Mariya"); - //mariya.setAge(30); - //System.out.println("I am a person! My name is " + mariya.name + " I am " + mariya.Age + " Old"); - //System.out.println("I am a person! My name is " + mariya.getName() + " I am " + mariya.getage() + " Old"); - - mariya.introduceYourself(); - Person Anonymous = new Person(); - - Anonymous.introduceYourself(); - //System.out.println("I am a person! My name is " + Anonymous.getName() + " I am " + Anonymous.getage() + " Old"); - - } - - -} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java deleted file mode 100644 index e3806e7..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package oop1_myworld; - -/** - * - * @author THE NET - */ -public class Person { - //public String name; - //public int Age; - private String name; - private int age; - - public static final double PI = 3.14; - - public static String nationality = "Bulgarian."; - - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - - public int getage() { - return age; - } - - public void setAge(int age) { - this.age = age; - } - - public Person(String name, int age){ - this.name = name; - this.age = age; - } - - public Person(){ - this("Anonymous", 22); - - } - - public void introduceYourself() - { - System.out.println("I am a person! My name is " + name + " I am " + age + " Old " + "and I am " + nationality); - } -} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java deleted file mode 100644 index 45e1d98..0000000 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package oop1_myworld; - -/** - * - * @author THE NET - */ -public class Student extends Person{ - - private String fNumber; - - public String getfNumber() { - return fNumber; - } - - public void setfNumber(String fNumber) { - this.fNumber = fNumber; - } - - public Student(String fNumber, String name, int age) { - super(name, age); - this.fNumber = fNumber; - } - - public Student() { - this("Test",45); - fNumber = "No facult number"; - } - - public Student(String name,int age) { - super(name,age); - - } - @Override - public void introduceYourself(){ - super.introduceYourself(); - System.out.println("I am a student. My name is: " + name + " and My fNumber is = " + fNumber); - } - - @Override - public String toString(){ - return "Student{"+ "fNumber=" + fNumber + '}'; - } -} - - - diff --git a/1401417015 AngelFlag/project1_1.rar b/1401417015 AngelFlag/project1_1.rar deleted file mode 100644 index 77023497452e3d315641231a8b0413cce931408f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 14780 zcma*O18`&ww>8|cZQItwwr!(h+qP}nm?RTVG_j3|&51QhCV!sidB1z_`_}*6|3B5I z`kd}wtJdCi_O4ykYpWPLli)%DW)fWh00h84hscyGaiZqGZU6w#zpn6|lf?;`SpmeK z*N)B()<9EN7DE<26E`bcGd)vVV;2{oiyosr(A5NJZ0}-d?B?oVXY6WaYWVjr0F8~F zSdDm}v|4|W{eAooTDJecv~G@O#;!m^XP}FNo3km<2c4WH&*R7ISnz`i66B=4*)6Clx6q`|G>5)|=Hera7>UjS;xb8u=s5 zA0pX;hqK4QXSr?KWxwm>=(kthU3S5TjUmGCE4vAp!)NymutM)F9i*JFS^Y`}kXNJQ zipASLWDUNY4X@p}jiKZw%Otd;wa+}j z=a>NW_TNl*3R+?pq^cLiNY~&h6DP6t1DWKq(Fdv3u{Y>@?3EQ_Nth&wi)pT)dJJ;K z2h57fU)Esj(6F|oEwBe*sH~;-cnxLTXv6n1e(pqS*c!Yz-@dmefXPvsW&NVYLH?NHxJJlNvk4=xSfb9=UK3Y}9 zqpd4NvsLb~gAG)0wbqM*L<_SYFL%{IdhY7aa%T?MKP!nV9TOj-J<3^(L9KcZx5J;o znZ-&@$_D5rq-}x-n8QcS3J>?W_lo%NRr!1^xF*1WQ{iegE;E^t=PpI251w?f$2Z!) z8h#JgnWHo<@8v|+F<~2O^ldpV)kP zjkFuex@K6=d0a$M`{lpoyNgHy6FYaMc1kZ%=Aet<9Jw6Qy6P;>;EDy}OMeZPORz%| z;&qay8*PzDnw3~6)M|80ZG0K}+}J^UgMn+es@l9&1fj5-LfQ*T($B~FJ^8B}T8JSN zS*p4hlTFA;S8Jwwe9_?3wa)r5jYGzpOnmTVuzX^d>QV$VcNGErrDq*>H>?Tm@qHj@ z)Mxc^12#S@j|lOz`nZz4M_`@)sy_7p*Xm>Rw6g^?G7x~kgUG|r&P)kwZUy-h(IF#j zg0%d4nJbzKG5ZGMF%V6@w(DD|kDa4j-V_#PvqIc^B^K4=-Hb{FJ3POfi|W&hnM{8D zoR0%<>imI zpqy6RA5s@f5ACAV;{;bXR8#qE@_7^q4}_~Sx!RN2hADZRli5E3CF3$2)X=FDAcd#O z=qb;z#c1YW+==xHdDD^KB|!`cPEU~ixX4^SXcZcbb_Dv`<={rl^d2zd=!PQM z#}lHqGo{Wn_90d=0)}0&k9iote?J70GtS_zYTgGP!Un9iYWRS^n{=3_61EDfR8VCd z`OUYOEO2}?U0q0>{sRo@dQv1^eV?v49O!2}JIYMM>UT3n+}0YZBOt-*%jfLbdfy;E zu1F=iZE7ur?u;}xQ*U|wX*R4bfM{8;>fuc{4YMR$&Tiu{QCzCX-Y;+oA@0oRqK5Qn zK=x63TUEq1D|R-dPAC}?nz)8R)`@i5Z_%Lmx)9W~m)bm#3+9TC^CvVkN%eO;HF>fNX~tM9x?hmUA?(F&r#AjlG9fa6VRk~OoR}^EwIZ2 z*_jUKP!GXSVP;)y`<^&rd`a^ysHrWGyvS3*zW+`M$#uQTzrV>~cM9ndJ2XlFF=KVI0Mw z4WX1jpcbz75JBI*WyjBk-)KLFg*8+=-)K;dyFdEGZ~iJ3FzqVSK?WHwPohc zGeTY~Mf=XuE9UZq@fISVCT=`jy*FuZt2a5I7Ky+SetatgN-4Bw(7(vWm&Ax}oirUD z5dhJ7Jt(eC=2A$^k{eN!M?2o1R@+lKI5rKxXer_MLwiEMM;>{yKAoy|c5^Is6NK|o zqFV8Ycp$`>q0ZG{9`cn?mL?{#(oUS$En?Hn?l_K!S`C z{#xY~Let*7>_8pu?JNU@^oxU7H8H1ERC@LnJB9NDr+eND1iC`@Kj|dJ1B=wpdNYjg zs%?8JE#!^Y=f^W|E?}tNpOwdUe@qb4Iub6f@~T;7H#lh@lOx*^hD0ggULJt-@ukh0 z%R?IH>$>~zJ4ZrMBgKUUVLbu;T!RMdcBeA-seeOwMKz@x0XJ&JD z8K<%a*2%A!V)f)-(sI`Onlvh}Y|@ZeVK_>6HvUlj1cxVd9&D>bbI2!c0KwpDpjH=m zQ?$dT*NdxFLFsH3Sv+(U$YgRT#ropnb@Eb6K1oaWb33wPtta6WWBIwuesYv_R9x$_ zWx3PcOp2bLPAY+cm2~>1uL&AWmc^@kr!yz@#Ud6>1pNwM$i!$fOXSM&t0=EmxCvHk z_`oTVe%=XU;`RFALkOvw%fRBb{?GSEiqO@rt`Xx^uaA=j`_HDx3sC-AkK`G4IrXaJpEtQ_olh*=n!5n#0#L>1-b#TC?e zh~={J=8o7u)tZZ$GO@PG4W@bP$;{O`DjBRbbh)q6Ue@$lyun4e}KR)$H0ocg^ zfISWn0O%x|Y(321O`7aK_1K&IYb^R_wqvlebF}@tXJ5<1#36$sPfj7I4w3wPTCaQN zUQ+eDTtTJf%THNw=I)=IOwO&{S7nvS>AF%Yoo8sxOlCyY`0_;Kw{2B^`=xz#PwGgB zF2tTwJ#!wPUaQGuCRl(Sc{qMJYE`g7UxucMHsrMw^Y!r}M z;r)Bz<9qL&v7AjY5C-zm?U3+rJl<#ft#$>Q1kT%^9G>OMlC85AQ8YD+)=nLt?G&2T>O94y= zvK^pH=e_TiN(Uixz(0J)c_0_9BmyYThktNM?t}~C36bHl<$q1UC$b0;4Ga4DyT(bLlPG*DUvVb_(uA`Q zjGkp|(4zV)jd<|5?d7tD-|c?mi&I&>HrHj>G^n8wB@sxk4e3S~rQRTtUI!LLEob>L z(;)Fqt3PA6b;GOOYF9w~gF|g7oeK@)RtPmk`U_y(%UjEXLJx55ja#|Ul3~_E-szRslJbb|5F82YF6$lZkrdoIN#?HodNi>&i8Z#> zYzfk-d0>3gQ0zJ0dbqNG@#wwtsJ{2wdGO*BeP0{^<6}D?gCb_du7$m=)Mkzdpm-;6 zv5bDGae}a&T@3Q`f)BLu1ZMLderIQgqRRi+@N`aIh9-j(NJM6bW(G&Y%zg$bdhLFX8NWNSU;+LZ|PeS(kV+$g4)W+mq1FjBctcEEgcfvM` zFfQ!|={?Q9VNBF*4WQ&Wewaz7FAQKHMm~r<>Fu3_gpm7ngSW1~@kFCelEiNA(T0#8vLFC*Ph zlb-C7=t4{TyrE|xS(c_Ke!jgcpi3f#C?dy)Xh~wuj_=jS$)7}yrf*OA11|%0G;cLM z7y!E(!Hd|2u$zE9`l?fKBLUJz2EOPdEC?tjLT3R)oc2Phb9zzI`yyRt$L!O)nZWQ{ zCm@s1F2wUuwD`{X3+<$4*97x{gY5+k%vsbF;+0r-VpajTli;*rA}J7+*om;tZ(D8D;8J*B}%+-wqg(B6)odKFB%~%z2gE*%}KIgcD7X2rcup< zAa{+k+f*_@k&9a2PQ|hAb=i5g367x-4Llfsh;&oVf^&V3f?^xoD`SoQX{ZMwC9rE{ zP7IkPg7a>#p|Rfr-ZC+bjZ%JiCPyS;h@ka#T>LRLle3XLC`;IZA*e;~?!B&j{<*{H z`?{{0P9xqf6PO8u`g3?P^~|xY!Bf25eReSt86K4vsO_yADXe9$XEv znKufACZ>NUEpFds*Sq_}2B4BWRd0Ueycgd^k-T|i_fKK*fq&7_*>xlKO@K~ae;Tw^ z8?+i(Gqzu~!K~3^Ul-;V2yC@H5jD&)S3GIQkP*84?JgvwnLFQY$;Uq*ymj@ACdPNZ zABSHkh^Im6JUkJCyj**n1a&99s%M7YaRav_Ahz@a<8vHCbb75uw}evKBz7{}^x?g{ zbc$YLrwO~5%|mtsve|XLbw%}j2aRLMMO3BBd1M;wX_cr2KpMQvK)(j_^m8l2$ztCz z?oCe8jHvD{V_N!vd2Ga#^n%b4+kg!SdDLPh)PX;}Vu+)Tks4%0%l{0I#N0^~2+>Nf z5>mf)jbsZ6t9PIz7hA{$aU|KS)`|Rm%>keG=DHt}y$^%^o3w_e+VxV~^?qJLXb5O) z{$^p8-|LZ1mpYEZL;)SA4v!0qjQb}tdYNOieo$U-{a4cwXP3^e>Gh!UgXEJM>6O%T5&+AOr3s{5z9uZ_FXzof(!M0A_OTA5^M=SJ_7QKx(1{?T$u4R zT-@R`Hy&5r$Y|R{=-`xSXAB8N+!*Omf`PAYAoZ^coI5|~gbS##29QD#fegl?Vu}v_ z-*9)2=gZ^h$Gr%h%{s3y+RI_HTrv>|k-UMQ7qIH;9J)B8*$LYlURok31;O`h3y=s-WNQ z&DqI7A^K}3A+PalKnsaM^#{BbNcn1=Uftnn_cgY$z#~sq`$y!Wgk-+ay(;`LtJ9BJ z#FWoxyLZ+>?AjVQ4NA1MT!0!=iA@51*YBVP4nY$o7X7FR@d!uFn$cH_ZsMic>SeCU znfk>bHf!R9Ip}BOFdN)LJlqN$W^-*K)C+BgEd8tB87>)2;l(_nlYE>-VT>1Pp+85R zA~ZMhm56lZAFX(QLajMUFxxZ<;VOOG zT^DDDLkC_WBU_lwC+Hvu=iBE)^H6FEfiwf!`UgvA^RU0U^2Q9xg?v*-Mo%k}z*$W9 z163I0>+84VoyH1{a_}RY?@6K(i&RO>bVY~6-4j6w_I}I_VcF`}u1^92RHz?Pk4HCp ztbTpaAI{7qdaxSshGWUrqCbE^&Rz z(!!Fl1UWne=Og5+(4r%PfOG`V%VU^i(FzJFuTVQfGU9o>eCkoLhQwblgfVQQB+D z2r-&qwHR1@dQ^&=^{R*F=^)wbzk;nMH+jPNY+|HHtSGwo@)NiZt<9BGmw*};j0d{u z9p8?V>t#Qw9-f8fBnPjsqSBl$M2?yNt=;+_HjqEj7%1x|^&7ekMgA(~w?WP+9MT@B;X9Z2JeaPK zpfoj{TRy8Vx1C!{ol9|0EMPT^K!9NShC>J0+0P;&0@wsxU$1qG;8&HLhW5U_cqFyZ zx?V-hKbu4);ccw%em*icL8l6BZf+>?v2tO@I)}Os^1mKKquv3-!%u-}A^tH-s&^hO zAi`G4-hKqF#$+(2VyrTY-U*{*T8rocMNTu^!)~br!|lqhR&HP=ub0(`E;7u<)DMLn zu;L{pbpe33%nj>;a>a0#aB5LE7<`x-rgS2%gA@0_kKpfX;@$HjqE_{n?YM`#2PUR+ zXgyP}`=TZrQ9PdAi(WDm%#0H(!OVw=D*I8zYMlWxnnBS$R{!ks_WZ#$!>qQ+ zqpSr;98;d#oe{mz4O$V}(EPSzC9Nn6JB@9`y4ff#$r)YSapX1Js7Zq+Zfuq%Oh8hD zOb+PG4L^99Ea_b>yK9*l(=V5yz2+F=eh;oa0OD6fd%{linWeN2*M24ZFx5_wthg?N zr6D@-E(>g-G1FMQ@TtIB9u8UqTodY{unt4&FwZ`RfD3hxS@X4a@Xsn`TV$`bhK zqH$FD6?X++;Yi7JynG;Rpm`6-EACU3__!@gNPPv3<_brq(#lH9y5CQxybnA$rv;Ns zf|*Mp9sKQvcXLE`OAleqW}ZBc!o!R|S-(Wc#4M7e&m(STbnamu#jqCM0tSJI9tQ3R zl2R+H0BX{0Ri`$**td|U4#JYyjg#P#%20t%d$2o*zNDmF9hqz!VgU zdjIKaC?o2R27P)%%Yf-)M>ZZ?hHGW&Yo2=Cwab0$^a;Bk1 zXG>XY(PmdombN5)utQkQqslDe>S6rm@}SlKaHBCKf26~5Mx=`#@w}x&mA71F6RUSc zXt?b9eZ)+^Qm`BqO4FA;@8b*Y2@b zj(JxD0A%7`5EoSMsOHsUenWtsa>vaNOT6X{-}4be?3J^nki53 zUjk+kG-R+e5omN9s@WWWSSkBB^maOu8j9{5|3URp&|A;b{r2{J+w*6{>U3<@O`_)u z7l-Y@v>k9d&ErK#;lR=?dFnNNIdXSjeKWtT$eM*PYY9oOUMK+nRh(uI9qwlCB?720 zq58~WS{^yxer5*F){A02z?e9g1j0d(F%fvL%_G;H} zRIhG{$c(&)R=b+!c8#WV_bgP>cTuC`bBoVwxI>`mjVpwp)G&B!U{vbT|9%r$Ze(F? zo5MtJt}N+!1z1|j!cxDPM7J9%YqQEfnvnP%To#f+SY_?AI8CL!8I#DLc38;Th0wQm z!TPE$=f{)O^*ly7wu1cykmievpB5{jz4?Y;g@JKxgJ2_4&BU)NP12~ui%XdS(Fu8M zXQ_)ve1dM+e?{W81{h&EtzEX@e7hpiG~MF9J&C}z2x#qpxmi>Kb_wF3%rD^sV+5S9 z=Xu`}_=Q0IG>mzK)Q3#Kl_+&JnFf@?qmd-Nb zki+zKsFuWtP|j0NrY?BV@D~+v(%r7D>Bx{GI70*@$w+ zh#)2Z5ECLVa5Gn@p0Rjlpi#9ex1E@wL?m(U_WUQ`sIku}5fv?7)BG1SdQRJZ-g^AK z3T1L1S5PDf)c|>~OlMjl>`Hu(UTdZ{JjykP&gq&pT?=~;a&f=w2Hwv8@REqL6cF%w z94_6aG34e?2Uk&2%i{pyX;o>U81Ktw=v2g&+9$~-!$GOwB2$~453Mo~Ap#&r>sVP< zo*rz~U6lTTrAB8URGVZFzcgj;IQdlBc6o+>(_!YFfGFtD!w@>kgDy!E`Z&WXo{esg zzvp)%U4G{$-!#u&g2{jsOk zefT-yME*~(NhlNh-t5A&lzP3LRdCTfiu8D|9+Ylf{OOkx4a6MlhxAK1+@B+n*Di1E zyS~S)qX$#Jlahj#*JH*B2w;(&nB6?dCV89u}NXI(u z60%mU5@q~rbk5XA2?>J!`hZ%P z6pG`y4tgKk7skpR7UlHa7+#=QATV5tL_A3ZW)yE}I2~o#z{3WKx3CpF&+C4VXLLng zBU7@@Ss1NPK0yW%^@MmWk3=yB1WCHEp~GzGTz4Oq%x6?=%sIoBh+a`fy27j-fTtVC z$e%W1-IAW?htP}I%sxj;8Dr2fM%Ur2KZ}@c$;x=b$6_}1I;ZDxo*dVSB36__tAiVL zN?d$T#ZQh+PIY*=ANJ%u-ynFFpx5$k_*u4J=&oN1$!dp@aqg%7tnd0Q*^cz4_n_pM z=~1P7R<-?6T0^I;^upSqdUo4uZIp&)an)RL2A>%bR?qkzElHEY52-Ux4hGD!G$+Jp zxj5bHXvS)83|Q9^fkdOUbzLm6^fBE1qFB;U0q>YP@A6G=0*Vt?N#hL>jk{J^qC6Zy zF)CDf#~-_zGGP)c+6mR^6oO&AZitt~)r1>9-yCA*j_$9#6o0MBjM4V|#Ad)$Rx@!k zAM7mb9*E%W@IwdPpMA&xz{xPiu+Z?%Xs~9`nZvz3XgD;aH$eG>9)%jMI;9b$8~qSW zAv0>!mXA7hrJL=j?!NG89(m9}?~J!r9h$P$Tb=g53_IwivL)75rH6p)PpGhINZvoy z7KYpxQMQ16G=0bc-OI~nwY)wtNNs{Q84M*RWdnG3;F7Y_+U9Gi5TPVLYZQZD(^3I9+w$nj zBe?i7tb8bD;O@hDm5h|rvOdUM@THU&PzcSm3Y9$d8{Q8qn9JLx5%GU$=@wXJL@JJ$E zht#>L2gdWlyaD-n>55ob(TUX`Qjv-iONsQg@_ypnJVEyfTyX{yvgKt9#Kf!=hKO@! zGc{aQB%duoVj{Q*DO+)($omXk_9%)X^t60b6SqUPQ)s9MP<5ZGyPm`JG{zeP*Vetx z@*aIBVj4afjF&*2VUU9Ot3#;Gmn$z{pRIuY(?B~qz~KvmoH*JvIAkCVJnRVr{?n+I z*zbIAE-NBRcW(9I0>^3c=(4%(cm?s%=3hUt3Q4utqApJA?Y6abT{}!%hs~Nl2!N`< z1FH6Y4x=xnO*tUZQ7GEmDGTJmYLoMJ@xo!UEcYrfC6MJWt(x(QjI4ReI z=m0E7MEPsie)Hv3{#Q|G4({w6BfC2YBqJY=pv6x$N`WM(ZB9FQAgZL7?Tv?N zGSgkG4oW{}lt$BS?l1<0Gc!e+Z+uqJ;>0Xv^NHyStHzv)8YKGua?Fa7@nfy7!IWf z#7APJDz~OQV`o0fnKmWM8%-|o z=wx6(#rPg%y$-)rQn4nBP;@DjI!{I^RY!Xo)nVnVG-PmoDk(fiVYN49CMceWZ0@q>5Y ze5R?(>6xN4xDcJ$H2Jp>xEi6-b{(!60q;s|&Q?_hMbxVLn{N-_cp0~3IO&^^e>T6u zDfZ(py2D3nR@`yIQQ>}lyBzRxly1Pr@V0}@x;d8=PGsYaKeu7WuE_j0t53qt+uy(~ z?yJtzN#)#XgS;Ezje@&vQ={5eC_*Vp+qOOX`GEf+3i;`2kV8sC98p28=!jyAJg{yC zb2qVuv+a0UgB%FtMk#ubbvNrgvtMyg!Ri5dWOdQYd^evP30T^Jf^vm}@lCE1 zgAen~B>YQrUqdq1P*_nUS@)?mnZo&+FX6bxkyXWIeXK6;>A|CudX$8{R7C-IRV$B$ zLDZ5!yXPTNR5y?L8t3?pDo^m!VYMPvnSvq|jjG1jHX7#yhC$MwMXkYTvz8@X&2^*ailOX{s<(1RB%0w3|Il3sm9j3ef*)<_h%(BZ>^l-=Y7dt(gW`+16E(T2h zH4<{NCrIR;){&_j_s!au0BEuc{t>RWni3NyMTae3ACo5jy*FwM0&S5Pw#JkE%+#*U z^9C4qMZr`2#8%%tD6Jqn%O>^Qc9DhZ%vGLjZD2)eCBqk49-yZvCIT;sC@H)S!CUyb zAK`KFwDJ3M8w%-_c%mw~EG`B0gSu_UPd|xN*Ve#uqSW--=|u>>O3z|T`THClJ(aEc zw0e81Rh`1c(i^xKa^};@I8heeDhl!iIguqCDg9^yGzJd1Q1DZo;pkC8g6##5k&_!< zc85|`1oLc>?Jtq}t&a5rls+$=2Cbvf>#pC&$Z2XCn&JG}UuXTx9*x*R&zC6Y`7?z9 zkFAf%;bqTwQNBL|D7WYC-a)79a-Of}E>TPGiClv0{LxiY1tpNYLf$pr60?bKLj+ z;_Z`5K|2Zi!Pjar6tS9^#q48vQp>eu`|Zg0y9;EXFPj1Is5?;T1n3ZYl^2<2QjzC3 zV*=1Pvgbv*RkNP1h-KWCpbc(x(;u3Q1#5Jd`yw)jvNj&tbX!a~9JK&KKAW%I%n(DO zd$d^hs-nx>q(MMrVPo@6WA%-h%hnyn`k=V@Rf0}+oSkTlW-VXWr;M26lDyCQcRe#N z*_L&CId}4qkWYQ#K+|<$GA$7t)RW(Gf_W2D!`RuwlKTfg$qk`fBIH_6_|j-enl56V zn}hUvS6b0)Q>#~WIsN)~OgoY0(z5hlJl;7MvT=ASXIEa+-m6m!*9M9;>dQiP4RZ4F zadFzR?wUYy#bt0^WDnMSCJhS1Ml^a@Johv$Y!QZm0Zik`;S3&=yA}Iy3QK#sYJx!Q zU;KB9X!NW-*gq5qtP!O-w9htgugEy+$Zfn zRvjdTZ6D-4`F~*WKCKx0MPH1r|EO8|)>dvawaDj}@o@N)iIAryBcb?iIkCXd+NMN~ zUCw&fNg&H$;PB*u#fiBAvDKchXFb)oK5%@vGeOKxwzPeqWdgLA=-JIxOnhLCN?)*!Z62<*E0~h9Lwwrnn4!J|Zr690|ep2sd zDmHbL3Yt&s&EGQq%ts=)JyhwoqmssS6?p(zj8`j;6o#Rs0z@_D?%y|vTH`Ow$0MSU ze+WozQl6FS^Q4~*R-U?*4h*GSeP!ISVe;zgC=Zylf75BxZ}qI&VqVx(X{!^RzB*B^ zL{@4ZrACh_6Xm2#ucS0we$T&3XPE4FyTzSuO}itSP>%aB$sowjiqo_fJvW7=v}r`E zJWb?w$k46*Mkqtd0dvJlNY~7_0ORr!#SVk}D~n@p5g7q_LsD|W)c3B&^7cTI&G`<* zbxJ70fjMnr>N#Jzs@3AjPoRJ)McNE*wuw?Nl~2W1G8MCn&%v_W8B4xOR0W#=HtJ#l z+-Eh57k^xRHRDwesBV|X^3}uUTVto19{CHHim&sHmv7GZfSHB(3lDO0Mh*}Ma%-+U zx@1lza2=~qJ5F-<+zGjZ1SurvgM<;fODghU78V6*c*pgbWN~Z<`Gcfo5KU)k@>D@* zY15p}Tj}bk&7d)={5tFMN!`$S?POME-g>OkTc|teQ?G^)^a9%|pCRI&!)FTAj!o!C zzUnysQO7~-R|DsLz2D^tSQ^x<0ZhkmMjhd6>zI}~PL+2rJaYtz4c0x>kX$#?G64!$ z1m(vXz`X?M)~--YncS)mno`;R5;0{4;S897w9cA%vhCZfJ+Kj@=T^=(4FzNA)st&N zx$NwDhxMcF82mu7QjkA-JV9&bDRpwlE}J{Se7D7ZX`(%%(|U+yCH?5}0?r*}_WsVv zH(VNUtYzKKS4NNMS06%me?Gl8@&Ggt0O05635uGEp!SbJlKTJdy|Dn=n_JleT^K*j zIF3MPSF69g&gX#ugeXohyL{RiJuQ~^4Bgv_P8QjOt9Bz2 zV$NS!H|48eNO3F{@E!QuG@#LE$udokBBXan@4GEKCSRh-e+gX`r-mL1Lq2(HOGyXf z^U7?BcrO%-cFie8H+| z5|XJv(f(?5{q?%?V%%7A&`51Vfh3kUHs3oLS(ivc1q;#ELAPh|kXmssTRz>j2lkyjHL3g#Q2Jm+AkW zUq@#v_fIFe-oM`eXPU3`YGq)QP+<5|5vXRjkh)=~R_}#_ULYyKwN~wPRY6?nXCit@ zp{a|K`6RkEDT_<*1)h*Pw6j@>RfI!|M3&lne!IXJ*(l#|fcN#E;Shfv--fiW_WG{O zp%)o@h#9|F=_2B^9&Bqyp z-@^FYiT`i%r%7aCf|O<_-?1@#P7I-hnbhc36*`5sqA~kgC|c-Jsg;6#YIIjPZ^>In z#|1sg2q!q|WLX?`&o}E8qSk*K)J|KRy0Ca|naqq24do8*2lY*!90#RKQ%I}Af8}O5 z^c)pqwQ!urVwdn+%y;pAH&C*majn>ut8fSX5zowP9edCW+roPcCz>P@dK1Rb>83U0 z>5%rN5-mSNv$@>i{;K&Y+tb9bW0fVoEDS^EceAm@+NAbZ%^3<)Yn4WW$W}ZppS3>?$5lD&%A*|Fvo z#x7eHd7}rOJW?y?bi{1(mFO^nth$U&%Uf5&dJx`4Z*bPtwgRH|6gEAT3*Mc8f%d|LXX&(*&d z{OJZqnvjx*OR;Tn1x`~>WB5P@+=o2~lW4ET0w@xDiXtu3Qa}IK;Td?44ZP@vqY%%> zP;Wt?;F1)EOAS*Xkl3<%he@+pbU1m_9wpg1`BJquW$IDToHunVw9|FlP2vf4p-{Y) z+T7KIz)Ua#KE!ZOy2*v<(e^WazSmpIT;uX4+mU?+h91N!q$zS)MZ3x-H!Y9q+5&sZ zigttKIH#;08?O~+a1EOrj{&k<=!!T0T&a{qLSg&b6vOas(WvbkCoFN*sIPiN`gPCcIJ2>KF@GQ- zy+WSUZ=Nm@WVI#O`I|!zx_Q)hUhD|kKOCNp;`B6kcM{zXx2%Upi9QFiihNeLIN;{9 zK|y{lzJM;CL$>~7z$E_vuI|4b^DVm$FhR(ZGfP2OJ#afG`g`k_`!aM?ygM3?#dVi% zBJ7#zV|GvN3aDIr!M1XNV3jy36;ZP%6__^ClmS2iomY2Qr%{=i3 z#(s*dDZJlYU8YRFe0_SNY~$pbmWZC3y=C6LnqRv3XV7lgk`T~?nlPE zX*%hxpc?T)q3vCbN-duOt6E}r7Q-H!z=}c!bqNMTMv!=M{Q&6kMW*nJ?I7xqI&3NX zHk)YIy$So{;L8pZXiGsP??^isV?0@JP?E@oWm(E!;9JFZ@ z6{0?o_v{JBXVw$|kDnP6f&9#xJ?4nhKbt)?|Cu!xXVcGS{$G1Z|6`xW+SuI~(5Nx! z1&^Z)KiTuy6@Mf^O{mZ&>u^$>@Ib>5aL|&IK)2ObhmL(2J=u5S{2ExL@-3KFQhFyM zxDyklhJ-2j{FX%zj|R}i?&I0acI8QmHtZX z^oEQkT68h~9B-0Ax2&vtpUt_j(o@+EnRGy)vOeDU;~CRta0E4Q%eMy+ zU*KLFPlXF&%FRS{w9+^ZX;#sWmXb8kmEwpx+i>v5FcS0RFD#CSkcqnH=;pdp)K#T{ zoEhYKnN`m5T##FCxViP8%uQ2!1oBk!FXr)1%36exOz$91xj%os*_dw^-D z@DdmM%8tIaZxL8?nEeG?QBHSZ0m2?6=}4ENOPgU+nvJbE^H8=R1FGrLQ+01zgJ((1 z)jcPTQ1uHLL)r>M!_o(rRAzzXhAMRb>u*951ZQYU_{Ch#Lac92u;OXdzk+%!KtW#~ zWFZyFvDQRDWy#dT=$-l3lPo%->=9rEBi{)i><>sA7X>s?4WocP@SFL`Cgasj!So~8 z()~zv??Q6Fq^N#bhX=m7vbQwh!BqL2T3F;Tu_pf#MI%p9JU;;LT)VUX5{*4xVOPHY z(1-h2nF(R`f|vyJ7!+f_{jyA6(I1l>BDKZXV|GNtSZiItVJo?O&7+SXIdO9BJt0>* z6$=`rP4!4Lf-JL?!*j)By6i^n(8XiBaeFl?*&R1Co`&wa^J)G5KgZu&cYoCoIx`sn z`Sa8NQ8fR)%=h140ImbVnb{^kdHDYi&3`WiqBCRvuRMUpxnZp8l25Skzk~m3f9TBk z{|WwY|M|aWGe9G6fzcwwCxO7f6Z|zDp)=$BC&9mW0zhL*GqKp*Cz|8m(SI#8qBA4^ zC;DIOie@(G_7|TZ?tcgUqZ$1_LI0&0aGjwWvl9LZWczpEKUxw06ZokW&{&C!0Uq`V aVfuH-KLTO@0|IFLl=g$)2OtCm_ - - - - - - - - - - Builds, tests, and runs the project project1_sra. - - - diff --git a/1401417015 AngelFlag/project1_sra/manifest.mf b/1401417015 AngelFlag/project1_sra/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/project1_sra/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml b/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml deleted file mode 100644 index d09e2ba..0000000 --- a/1401417015 AngelFlag/project1_sra/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties b/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties deleted file mode 100644 index aa1ae87..0000000 --- a/1401417015 AngelFlag/project1_sra/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=9d079792 -build.xml.script.CRC32=e0732309 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=9d079792 -nbproject/build-impl.xml.script.CRC32=583300d1 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.properties b/1401417015 AngelFlag/project1_sra/nbproject/project.properties deleted file mode 100644 index b4abe45..0000000 --- a/1401417015 AngelFlag/project1_sra/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/project1_sra.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=project1_sra.Project1_sra -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/project1_sra/nbproject/project.xml b/1401417015 AngelFlag/project1_sra/nbproject/project.xml deleted file mode 100644 index 4ad2928..0000000 --- a/1401417015 AngelFlag/project1_sra/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - project1_sra - - - - - - - - - diff --git a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java deleted file mode 100644 index 551a769..0000000 --- a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package project1_sra; -import java.util.Random; -/** - * - * @author THE NET - */ -public class Project1_sra { - - /** - * @param args the command line arguments - */ - //public static int arr[] = {}; -// arr[0] = generate(); -// arr[1] = generate(); -// arr[2] = generate(); - - public static void main(String[] args) { - - int[] arr = new int[7]; - //public static int arr[] = {}; -// arr[0] = generate(); -// arr[1] = generate(); -// arr[2] = ge - double br = 0; - double sum = 0; - - for (int i = 0; i < arr.length; i++ ) { - - arr[i] = generate(); - System.out.println(arr[i]); - - if(arr[i]%5 == 0){ - - sum = sum + arr[i]; - System.out.println("Няма остатък: " + arr[i]); - - br = br + 1; - } - } - System.out.println("Сумата на елементите е : " + sum + " и броят им е : " + br); - calc(sum, br); - - } - - private static int generate() { - Random rand = new Random(); - int n = rand.nextInt(201); - return n-100; -} - - public static void calc(double sum, double br){ - - double result = sum / br; - System.out.println("средно аритметично на елементите, които се делят на 5 без остатък е: " + result); - } -} diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/build.xml b/1401417015 AngelFlag/project2_arrayS#@rT/build.xml deleted file mode 100644 index 340c776..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project project2_arrayS#@rT. - - - diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf b/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml deleted file mode 100644 index e8071a0..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties deleted file mode 100644 index ed3fc1c..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=ca70fcad -build.xml.script.CRC32=380720e7 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=ca70fcad -nbproject/build-impl.xml.script.CRC32=3eeabac3 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties deleted file mode 100644 index f8470fe..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/project2_arrayS__rT.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=project2_arrays.rt.Project2_arraySRT -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml b/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml deleted file mode 100644 index ee98d19..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - project2_arrayS#@rT - - - - - - - - - diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java b/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java deleted file mode 100644 index 326d4a9..0000000 --- a/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java +++ /dev/null @@ -1,156 +0,0 @@ -package project2_arrays.rt; - -import java.util.Scanner; - -//Задача 4. Елементите на масив са имена на населени места, -//започващи с главна буква. Да се съставят ППГ за: -//а) въвеждане на елементите на масива (не повече от 50). -//ж) извеждане на екрана на всички населени места, в чиито имена буквата -//"е" или "Е" се среща 2, 3 или 4 пъти, а буквата "р" не се среща нито веднъж; - -public class Project2_arraySRT { - - - static int br = 0; - static String array [] = new String[50]; - static Scanner keyboard = new Scanner(System.in, "windows-1251"); - - public static void main(String[] args) { - - menu(); - } - - public static void menu() { - - System.out.println("Меню"); // Извеждане на менюто в конзолата - System.out.println(" 1. Въвеждане на градове от конзола"); - System.out.println(" 2. Въвеждане на градове от задание"); - System.out.println(" 3. Принти масива"); - System.out.println(" 4. Особената част!"); - System.out.println(" 5. Изход"); - System.out.print("Изберете възможност (1-5): "); - - //int myChoice = keyboard.nextInt(); - - //String Text; - switch(keyboard.nextLine()){ - - case "1": - System.out.println("Вие избрахте 1: Въвеждане на градове от конзола"); - input(); - menu(); - - break; - - case "2": - System.out.println("Вие избрахте 2: Въвеждане на градове от задание"); - autoArray(); - menu(); - break; - - case "3": - System.out.println("Вие избрахте 3 да принтирате масива"); - printAll(); - menu(); - break; - - case "4": - System.out.println("Вие избрахте да принтирате Особена част"); - printSpecial(); - menu(); - - break; - - case "5": - System.out.println("Изход - Довиждане"); - //menu(); - break; - - default: - System.out.println("Въвели сте грешен избор!"); - menu(); - break; - - } - - //Keyboard.close(); - - } - //int[] array = new int[50];//tova mi e za dvata masiva! - - - public static void input(){ - - System.out.print("Напишете град: "); - - for (int i = br ; i < array.length; i++) { - array[i] = keyboard.nextLine(); - break; - } - br++; - } - - public static String autoTowns(){ - - String[] towns = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница", "Пловидв" }; - br++; - return towns[br]; - - } - - public static void autoArray(){ - - System.out.println("Избрани градове!"); - - for (int i = 0; i < array.length; i++){ - - array[i] = autoTowns(); - - } - br = array.length; - - - } - - public static void printAll(){ - - System.out.println("Избраните градове сa: " + array[0]); - - for(int i = 0; i < array.length; i++) { - - if (array[i] == null) { - break; - } - - System.out.println(array[i]); - - } - -// for(String elements : array) { -// System.out.println(elements); -// } - - } -// - public static void printSpecial(){ - System.out.println("->Градовете,в чиито имена буквата \"е\" или \"Е\" се " + - "среща 2, 3 или 4 пъти, а буквата \"р\" не се среща нито веднъж: \n"); - - int non=0; - - for(int i=0; i1 && br<5 && (array[i].indexOf('р') == -1)) - {System.out.print(" " + array[i] + "; \n"); non++;} - } - if(0 == non) System.out.println("\nНяма такива!!!!"); - } - } - - //public static String[] m = new String[]{"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; - -//} - - diff --git a/1401417015 AngelFlag/project2_final/build.xml b/1401417015 AngelFlag/project2_final/build.xml deleted file mode 100644 index c1fd7c5..0000000 --- a/1401417015 AngelFlag/project2_final/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project project2_final. - - - diff --git a/1401417015 AngelFlag/project2_final/manifest.mf b/1401417015 AngelFlag/project2_final/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/project2_final/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml b/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml deleted file mode 100644 index 20ffcc0..0000000 --- a/1401417015 AngelFlag/project2_final/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties b/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties deleted file mode 100644 index d43dd13..0000000 --- a/1401417015 AngelFlag/project2_final/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=2e808e45 -build.xml.script.CRC32=b172d6e1 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=2e808e45 -nbproject/build-impl.xml.script.CRC32=a9df7049 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/project2_final/nbproject/project.properties b/1401417015 AngelFlag/project2_final/nbproject/project.properties deleted file mode 100644 index 999e847..0000000 --- a/1401417015 AngelFlag/project2_final/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/project2_final.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=project2_final.Project2_final -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/project2_final/nbproject/project.xml b/1401417015 AngelFlag/project2_final/nbproject/project.xml deleted file mode 100644 index 6246a84..0000000 --- a/1401417015 AngelFlag/project2_final/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - project2_final - - - - - - - - - diff --git a/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java b/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java deleted file mode 100644 index 0c91694..0000000 --- a/1401417015 AngelFlag/project2_final/src/project2_final/Project2_final.java +++ /dev/null @@ -1,69 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package project2_final; - -import java.util.Scanner; - - - -/** - * - * @author THE NET - */ -public class Project2_final { - - Scanner Keyboard = new Scanner(System.in); - int myChoice = Keyboard.nextInt(); - String[] array = new String[50]; - - - public static void main(String[] args) { - - System.out.println("Меню"); // Извеждане на менюто в конзолата - System.out.println(" 1. Въвеждане на градове от конзола"); - System.out.println(" 2. Въвеждане на градове от задание"); - System.out.println(" 3. Принти масива"); - System.out.println(" 4. Особената част!"); - System.out.println(" 5. Изход"); - System.out.print("Изберете възможност (1-5): "); - System.out.println("assfafads"); - - String Text; - switch(myChoice){ - - case 1: Text = "Вие избрахте 1: Въвеждане на градове от конзола"; - input(); - break; - - case 2: Text = "Вие избрахте 2: Въвеждане на градове от задание"; - autoTown(); - break; - - case 3: Text = "Вие избрахте да принтирате масива"; - break; - - case 4: Text = "Вие избрахте да принтирате Особена част"; - break; - case 5: Text = "Изход"; - break; - default: Text = "Въвели сте грешен избор!"; - } - - } - //Scanner scan = new Scanner (System.in); - //int num1 = scan.nextInt(); - - - //need to create the Scanner variable: -//emember to right click on the main page, select source, and then select organize imports. Next you need to create an int variable to store the first input. -//Read more: http://www.java-made-easy.com/java-scanner.html#ixzz3MHQU8mMd - - /** - * @param args the command line arguments - */ - - -} diff --git a/1401417015 AngelFlag/projecteasygo/build.xml b/1401417015 AngelFlag/projecteasygo/build.xml deleted file mode 100644 index a13afae..0000000 --- a/1401417015 AngelFlag/projecteasygo/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project projecteasygo. - - - diff --git a/1401417015 AngelFlag/projecteasygo/manifest.mf b/1401417015 AngelFlag/projecteasygo/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/projecteasygo/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml b/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml deleted file mode 100644 index 2024d15..0000000 --- a/1401417015 AngelFlag/projecteasygo/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties b/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties deleted file mode 100644 index b3ec142..0000000 --- a/1401417015 AngelFlag/projecteasygo/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=ae93b4fe -build.xml.script.CRC32=fa82d58a -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=ae93b4fe -nbproject/build-impl.xml.script.CRC32=c66860c8 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/project.properties b/1401417015 AngelFlag/projecteasygo/nbproject/project.properties deleted file mode 100644 index a50d20a..0000000 --- a/1401417015 AngelFlag/projecteasygo/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/projecteasygo.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=projecteasygo.Projecteasygo -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/projecteasygo/nbproject/project.xml b/1401417015 AngelFlag/projecteasygo/nbproject/project.xml deleted file mode 100644 index 1e4a658..0000000 --- a/1401417015 AngelFlag/projecteasygo/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - projecteasygo - - - - - - - - - diff --git a/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java b/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java deleted file mode 100644 index c180a07..0000000 --- a/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java +++ /dev/null @@ -1,38 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package projecteasygo; - -/** - * - * @author THE NET - */ -public class Projecteasygo { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - //String imena[] = new String[50]; - String[] imena = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; - - - //String[] array = new String[50]; - - низовеЗапочващиС(imena, "и"); - - System.out.println(imena); - } - public static void низовеЗапочващиС(String m[], String search){ - System.out.println("Низове започващи с " + search + ":"); - - for(int i=0; i - - - - - - - - - - Builds, tests, and runs the project test. - - - diff --git a/1401417015 AngelFlag/test/manifest.mf b/1401417015 AngelFlag/test/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/test/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/test/nbproject/build-impl.xml b/1401417015 AngelFlag/test/nbproject/build-impl.xml deleted file mode 100644 index 3d21807..0000000 --- a/1401417015 AngelFlag/test/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/test/nbproject/genfiles.properties b/1401417015 AngelFlag/test/nbproject/genfiles.properties deleted file mode 100644 index 5e8d9c2..0000000 --- a/1401417015 AngelFlag/test/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=3dbc7120 -build.xml.script.CRC32=a8ad46cf -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=3dbc7120 -nbproject/build-impl.xml.script.CRC32=e020339c -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/test/nbproject/project.properties b/1401417015 AngelFlag/test/nbproject/project.properties deleted file mode 100644 index fae5d7f..0000000 --- a/1401417015 AngelFlag/test/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/test.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=test.Test -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/test/nbproject/project.xml b/1401417015 AngelFlag/test/nbproject/project.xml deleted file mode 100644 index fe97871..0000000 --- a/1401417015 AngelFlag/test/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - test - - - - - - - - - diff --git a/1401417015 AngelFlag/test/src/test/Test.java b/1401417015 AngelFlag/test/src/test/Test.java deleted file mode 100644 index e452481..0000000 --- a/1401417015 AngelFlag/test/src/test/Test.java +++ /dev/null @@ -1,364 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package test; - -import java.io.IOException; -import java.util.*; - -/** - * - * @author fmi - */ -public class Test { - - /** - * @param args the command line arguments - * @throws java.io.IOException - */ - public static void main(String[] args) throws IOException{ - - // TODO code application logic here - byte myByte = 22; - short myShort = 257; - int myInt = -123; - long myLong = 123L; // 077 0x077 - - float myFloat = 2.34F; - double myDouble = 2.34; // - - char myChar = 'c'; //'\u0000' - boolean myBoolean = false; // true - - // -------------------- Referent ----- - String myName = "Stoyan\\ "; // \n - Object myOtherByte = 3; - - System.out.print(myName); - System.out.println(myName); - - // int ch; - // 1. - // ch = System.in.read(); - // System.out.print((char) ch); - - // while ((ch = System.in.read()) != '\n') { - // System.out.print((char) ch); - // } - - // 2. - Scanner input = new Scanner(System.in); - System.out.print("Please enter your first name: "); - String firstName = input.nextLine(); - System.out.println(firstName); - - double number1 = 3.14; - double number2 = 2.71; - - System.out.println(number1 + number2); - - System.out.printf("%.3f \n", number1 + number2); - -// Old way for reading symbols -// BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); -// String firstString = br.readLine(); -// String lastString = br.readLine(); -// System.out.printf("Hello, %s %s!\n", firstString, lastString); - - - - for(int i = 0; i < 10; i++) - { - for (int j = 0; j < i; j ++) - { - System.out.print('*'); - } - System.out.print("\n"); - } - - Operations(2.32, 45.6); - - // Excersise 2 - // ############################################## 2 ################################### - // 1. Type conversions - long minNumber = 1; - long maxNumber = 1000000; - - // Generates a random number between 1 and 1000000 - long uniqueID = minNumber + (long)(Math.random() * ((maxNumber - minNumber) + 1)); - - // You can cast from one primitive value into another by putting what you want between ( ) - // (byte) (short) (long) (double) - // (float), (boolean) & (char) don't work. - // (char) stays as a number instead of a character - - // You convert from a primitive to a string like this - String stringNumber = Long.toString(maxNumber); - - // Byte.toString(bigByte); Short.toString(bigShort); Integer.toString(bigInt); - // Float.toString(bigFloat); Double.toString(bigDouble); Boolean.toString(trueOrFalse); - - // You convert from a String to a primitive like this - int numberString = Integer.parseInt(stringNumber); - - // parseShort, parseLong, parseByte, parseFloat, parseDouble, parseBoolean - - System.out.println("Unique ID set to: " + uniqueID); - - - // 2) If - String name = ""; - - // userInput.hasNextLine() returns true if a String was entered in the keyboard - if(input.hasNextLine()){ - - // userInput.nextLine() returns the value that was entered at the keyboard - System.out.print("Enter your family name; \n"); - name = input.nextLine(); - - // hasNextInt, hasNextFloat, hasNextDouble, hasNextBoolean, hasNextByte, - // hasNextLong, nextInt, nextDouble, nextFloat, nextBoolean, etc. - - } - - System.out.printf("%s \n", name); - - // 3. if-else - int randomNumber = (int) (Math.random() * 126) + 1; - - char favoriteChar = (char) randomNumber; - - // if then else statement - // > < == != >= <= - if(randomNumber == 32){ - - System.out.println("Favorite character set to: Space"); - - } else if(randomNumber == 10){ - - System.out.println("Favorite character set to: New Line"); - - } else { - - System.out.println("Favorite character set to: " + favoriteChar); - - } - - - // Logical operators - // ! Logical operators : Converts the boolean value to its right to its opposite form ie. true to false - // & : Returns true if boolean value on the right and left are both true (Always evaluates both boolean values) - // && : Returns true if boolean value on the right and left are both true (Stops evaluating after first false) - // | : Returns true if either boolean value on the right or left are true (Always evaluates both boolean values) - // || : Returns true if either boolean value on the right or left are true (Stops evaluating after first true) - // ^ : Returns true if there is 1 true and 1 false boolean value on the right or left - - if((randomNumber > 97) && (randomNumber < 122)){ - - System.out.println("Favorite character is a lowercase letter"); - - } - - if(((randomNumber > 97) && (randomNumber < 122)) || ((randomNumber > 64) && (randomNumber < 91))){ - - System.out.println("Favorite character is a letter"); - - } - - if(!false){ - - System.out.println("I turned false to " + !false); - - } - - // The ternary operator assigns one or another value based on a condition - int whichIsBigger = (50 > randomNumber) ? 50 : randomNumber; - - System.out.println("The biggest number is " + whichIsBigger); - - - // 4. switch - // The switch statement is great for when you have a limited number of values - // and the values are int, byte, or char unless you have Java 7 which allows Strings - switch(randomNumber){ - - case 8 : - System.out.println("Favorite character set to: Backspace"); - break; - - case 9 : - System.out.println("Favorite character set to: Horizontal Tab"); - break; - - case 10 : - case 11 : - case 12 : - System.out.println("Favorite character set to: Something else weird"); - break; - - default : - System.out.println("Favorite character set to: " + favoriteChar); - break; - - } - - - // 5. loops - // System.out.println(1); - // System.out.println(2); - // System.out.println(3); - - // 5.1 while - int i = 1; - while(i < (maxNumber / 2000)){ - - System.out.println(i); - i++; - - // This isn't needed, but if you want to jump out of a loop use break - if(i == (maxNumber/20000)) break; - } - - // 5.2 do - while - int number = 50; - // Do while loops are used when you want to execute the code in the braces at least once - do { - - System.out.println("Guess my number up to 100"); - - // If what they entered isn't a number send a warning - while(!input.hasNextInt()){ - - String numberEntered = input.next(); - System.out.printf("%s is not a number\n", numberEntered); - - } - number = input.nextInt(); - - }while(number != 50); - - System.out.println("Yes the number was 50"); - - - // 5.3 for - for(int i1 = 0; i1 <= 100; i1++){ - - // continue is used to skip 1 iteration of the loop - if(i1 == 90) continue; - - System.out.println(i1); - - } - // 5.4 - int[] numbers = {2, 3, 5, 7, 11, 13, 17, 19}; - for (int i2 : numbers){ - System.out.println(i2); - } - - // An array is a fixed series of boxes that contain multiple values of the same data type - // How you create arrays - // int[] favoriteNumbers; - // favoriteNumbers = new int[20]; - - int[] favoriteNumbers1 = new int[20]; - - favoriteNumbers1[0] = 100; - - String[] stringArray = {"Random", "Words", "Here"}; - - // for(dataType[] varForRow : arrayName) - for(String word : stringArray) - { - System.out.println(word); - } - - // This is a multidimensional array - String[][][] arrayName = { - { - { "000", "001" }, - { "100", "011" }, - { "200", "021" }, - { "300", "031" } - }, - { - { "010", "101" }, - { "110", "111" }, - { "210", "121" }, - { "310", "131" } - }, - { - { "020", "201" }, - { "120", "211" }, - { "220", "221" }, - { "320", "231" } - } - }; - System.out.println(arrayName[2][3][1]); - /* - for(int i = 0; i < arrayName.length; i++) - { - for(int j = 0; j < arrayName[i].length; j++) - { - - for(int k = 0; k < arrayName[i][j].length; k++) - { - System.out.print("| " + arrayName[i][j][k] + " "); - - } - } - - System.out.println("|"); - - } - */ - // You can copy an array (stringToCopy, indexes to copy) - String[] cloneOfArray = Arrays.copyOf(stringArray, 3); - - // You can print out the whole array - System.out.println(Arrays.toString(cloneOfArray)); - - // Returns the index or a negative number - System.out.println(Arrays.binarySearch(cloneOfArray, "Random")); - - - - } - - static void Operations(double par1, double par2) - { - System.out.printf("%.2f + %.2f = %.2f", par1, par2, par1 + par2); - - } - -} - -/* -import java.util.*; -public class ReadingStringsNewStyle { -public static void main(String[] args) { -Scanner input = new Scanner(System.in); -System.out.print("Please enter your first name: "); -String firstName = input.nextLine(); -System.out.print("Please enter your last name: "); -String lastName = input.nextLine(); -System.out.printf("Hello, %s %s!\n", firstName, lastName); -// input.close(); - Don't close Scanner reading System.in! -} -} -*/ -/** - * - * @author THE NET - */ - //public class Test { - - /** - * @param args the command line arguments - */ - //public static void main(String[] args) { - // TODO code application logic here - // } - -//} diff --git a/1401417015 AngelFlag/tutorial/build.xml b/1401417015 AngelFlag/tutorial/build.xml deleted file mode 100644 index ee2c441..0000000 --- a/1401417015 AngelFlag/tutorial/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project tutorial. - - - diff --git a/1401417015 AngelFlag/tutorial/manifest.mf b/1401417015 AngelFlag/tutorial/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/tutorial/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml b/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml deleted file mode 100644 index f56bab2..0000000 --- a/1401417015 AngelFlag/tutorial/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties b/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties deleted file mode 100644 index a39718a..0000000 --- a/1401417015 AngelFlag/tutorial/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=5c4846ae -build.xml.script.CRC32=36ee11c6 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=5c4846ae -nbproject/build-impl.xml.script.CRC32=7da3cc3a -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/tutorial/nbproject/project.properties b/1401417015 AngelFlag/tutorial/nbproject/project.properties deleted file mode 100644 index c68e677..0000000 --- a/1401417015 AngelFlag/tutorial/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/tutorial.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=tutorial.Tutorial -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/tutorial/nbproject/project.xml b/1401417015 AngelFlag/tutorial/nbproject/project.xml deleted file mode 100644 index fd2f9bc..0000000 --- a/1401417015 AngelFlag/tutorial/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - tutorial - - - - - - - - - diff --git a/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java b/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java deleted file mode 100644 index 4b882dd..0000000 --- a/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java +++ /dev/null @@ -1,61 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package tutorial; - -/** - * - * @author THE NET - */ -public class Tutorial { - - //static String randomString = "String to Print"; - //static final Double PINUM = 3.141529; - int integerOne =22; - int integerTwo = integerOne + 1; - - public static void main(String[] args) { - //int integerOne =22; - // int integerTwo = integerOne + 1; - - //System.out.println(integerTwo); - byte bigByte = 127; - short bigShort = 32767; - int bigInt = 2100000000; - long bigLong = 9220000000000000000L; - float bigFloat = 3.14F; - double bigDouble = 3.148237948727347923748; - System.out.println(Double.MAX_VALUE); - System.out.println(Float.MAX_VALUE); - - boolean trueOrFalse = true; - - char randomChar = 66; - char anotherChar = 'A'; - - char escapedChars = '\\'; - - String randomString = "I am a random String"; - String anotherString = "Stuff"; - - String andAnotherString = randomString + " " + anotherString; - - String byteString = Byte.toString(bigByte); - String shortString = Short.toString(bigByte); - String intString = Integer.toString(bigByte); - String longString = Long.toString(bigByte); - String floatString = Float.toString(bigByte); - String doubleString = Double.toString(bigByte); - String booleanString = Boolean.toString(true); - - double aDoubleValue = 3.14546466464; - int doubleToInt = (int) aDoubleValue; - - System.out.println(randomChar); - System.out.println(andAnotherString); - System.out.println(doubleToInt); - } - -} diff --git a/1401417015 AngelFlag/upr1zad2intI=5/build.xml b/1401417015 AngelFlag/upr1zad2intI=5/build.xml deleted file mode 100644 index f911cac..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project upr1zad2intI=5. - - - diff --git a/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml deleted file mode 100644 index 7e27ba2..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties deleted file mode 100644 index cf80e05..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=bbd82aac -build.xml.script.CRC32=84847ed1 -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=bbd82aac -nbproject/build-impl.xml.script.CRC32=cadce331 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties deleted file mode 100644 index 2683611..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/upr1zad2intI_5.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=upr1zad2inti.pkg5.Upr1zad2intI5 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml b/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml deleted file mode 100644 index a6e181e..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - upr1zad2intI=5 - - - - - - - - - diff --git a/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java deleted file mode 100644 index 86ea1f9..0000000 --- a/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java +++ /dev/null @@ -1,22 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package upr1zad2inti.pkg5; - -/** - * - * @author THE NET - */ -public class Upr1zad2intI5 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - int i = 2; - i = i + 19; - System.out.println(i); - } -} diff --git a/1401417015 AngelFlag/upr5_2/build.xml b/1401417015 AngelFlag/upr5_2/build.xml deleted file mode 100644 index 46bf614..0000000 --- a/1401417015 AngelFlag/upr5_2/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project upr5_2. - - - diff --git a/1401417015 AngelFlag/upr5_2/manifest.mf b/1401417015 AngelFlag/upr5_2/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/upr5_2/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml b/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml deleted file mode 100644 index f74be25..0000000 --- a/1401417015 AngelFlag/upr5_2/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties b/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties deleted file mode 100644 index 348b74d..0000000 --- a/1401417015 AngelFlag/upr5_2/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=97340415 -build.xml.script.CRC32=c62beafe -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=97340415 -nbproject/build-impl.xml.script.CRC32=6a5c2f1b -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/upr5_2/nbproject/project.properties b/1401417015 AngelFlag/upr5_2/nbproject/project.properties deleted file mode 100644 index 0270ac0..0000000 --- a/1401417015 AngelFlag/upr5_2/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/upr5_2.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=upr5_2.Upr5_2 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/upr5_2/nbproject/project.xml b/1401417015 AngelFlag/upr5_2/nbproject/project.xml deleted file mode 100644 index 2d9a126..0000000 --- a/1401417015 AngelFlag/upr5_2/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - upr5_2 - - - - - - - - - diff --git a/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java deleted file mode 100644 index 2362e7b..0000000 --- a/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java +++ /dev/null @@ -1,14 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package upr5_2; - -/** - * - * @author THE NET - */ -class Person { - -} diff --git a/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java deleted file mode 100644 index 7144ffa..0000000 --- a/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java +++ /dev/null @@ -1,21 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package upr5_2; - -/** - * - * @author THE NET - */ -public class Upr5_2 { - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} diff --git a/1401417015 AngelFlag/zad1/build.xml b/1401417015 AngelFlag/zad1/build.xml deleted file mode 100644 index 3a4efc5..0000000 --- a/1401417015 AngelFlag/zad1/build.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - Builds, tests, and runs the project zad1. - - - diff --git a/1401417015 AngelFlag/zad1/manifest.mf b/1401417015 AngelFlag/zad1/manifest.mf deleted file mode 100644 index 1574df4..0000000 --- a/1401417015 AngelFlag/zad1/manifest.mf +++ /dev/null @@ -1,3 +0,0 @@ -Manifest-Version: 1.0 -X-COMMENT: Main-Class will be added automatically by build - diff --git a/1401417015 AngelFlag/zad1/nbproject/build-impl.xml b/1401417015 AngelFlag/zad1/nbproject/build-impl.xml deleted file mode 100644 index cf535a2..0000000 --- a/1401417015 AngelFlag/zad1/nbproject/build-impl.xml +++ /dev/null @@ -1,1413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set src.dir - Must set test.src.dir - Must set build.dir - Must set dist.dir - Must set build.classes.dir - Must set dist.javadoc.dir - Must set build.test.classes.dir - Must set build.test.results.dir - Must set build.classes.excludes - Must set dist.jar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - No tests executed. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must set JVM to use for profiling in profiler.info.jvm - Must set profiler agent JVM arguments in profiler.info.jvmargs.agent - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - To run this application from the command line without Ant, try: - - java -jar "${dist.jar.resolved}" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - Must select one file in the IDE or set run.class - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set debug.class - - - - - Must select one file in the IDE or set debug.class - - - - - Must set fix.includes - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - Must select one file in the IDE or set profile.class - This target only works when run from inside the NetBeans IDE. - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - This target only works when run from inside the NetBeans IDE. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select one file in the IDE or set run.class - - - - - - Must select some files in the IDE or set test.includes - - - - - Must select one file in the IDE or set run.class - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Must select some files in the IDE or set javac.includes - - - - - - - - - - - - - - - - - - - - Some tests failed; see details above. - - - - - - - - - Must select some files in the IDE or set test.includes - - - - Some tests failed; see details above. - - - - Must select some files in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - Some tests failed; see details above. - - - - - Must select one file in the IDE or set test.class - - - - Must select one file in the IDE or set test.class - Must select some method in the IDE or set test.method - - - - - - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - Must select one file in the IDE or set applet.url - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/1401417015 AngelFlag/zad1/nbproject/genfiles.properties b/1401417015 AngelFlag/zad1/nbproject/genfiles.properties deleted file mode 100644 index 75da4f8..0000000 --- a/1401417015 AngelFlag/zad1/nbproject/genfiles.properties +++ /dev/null @@ -1,8 +0,0 @@ -build.xml.data.CRC32=bfefe4f0 -build.xml.script.CRC32=d6e3fe1c -build.xml.stylesheet.CRC32=8064a381@1.75.2.48 -# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. -# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. -nbproject/build-impl.xml.data.CRC32=bfefe4f0 -nbproject/build-impl.xml.script.CRC32=8ce2ab13 -nbproject/build-impl.xml.stylesheet.CRC32=876e7a8f@1.75.2.48 diff --git a/1401417015 AngelFlag/zad1/nbproject/project.properties b/1401417015 AngelFlag/zad1/nbproject/project.properties deleted file mode 100644 index c6058ad..0000000 --- a/1401417015 AngelFlag/zad1/nbproject/project.properties +++ /dev/null @@ -1,73 +0,0 @@ -annotation.processing.enabled=true -annotation.processing.enabled.in.editor=false -annotation.processing.processor.options= -annotation.processing.processors.list= -annotation.processing.run.all.processors=true -annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output -build.classes.dir=${build.dir}/classes -build.classes.excludes=**/*.java,**/*.form -# This directory is removed when the project is cleaned: -build.dir=build -build.generated.dir=${build.dir}/generated -build.generated.sources.dir=${build.dir}/generated-sources -# Only compile against the classpath explicitly listed here: -build.sysclasspath=ignore -build.test.classes.dir=${build.dir}/test/classes -build.test.results.dir=${build.dir}/test/results -# Uncomment to specify the preferred debugger connection transport: -#debug.transport=dt_socket -debug.classpath=\ - ${run.classpath} -debug.test.classpath=\ - ${run.test.classpath} -# Files in build.classes.dir which should be excluded from distribution jar -dist.archive.excludes= -# This directory is removed when the project is cleaned: -dist.dir=dist -dist.jar=${dist.dir}/zad1.jar -dist.javadoc.dir=${dist.dir}/javadoc -excludes= -includes=** -jar.compress=false -javac.classpath= -# Space-separated list of extra javac options -javac.compilerargs= -javac.deprecation=false -javac.processorpath=\ - ${javac.classpath} -javac.source=1.8 -javac.target=1.8 -javac.test.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -javac.test.processorpath=\ - ${javac.test.classpath} -javadoc.additionalparam= -javadoc.author=false -javadoc.encoding=${source.encoding} -javadoc.noindex=false -javadoc.nonavbar=false -javadoc.notree=false -javadoc.private=false -javadoc.splitindex=true -javadoc.use=true -javadoc.version=false -javadoc.windowtitle= -main.class=zad1.Zad1 -manifest.file=manifest.mf -meta.inf.dir=${src.dir}/META-INF -mkdist.disabled=false -platform.active=default_platform -run.classpath=\ - ${javac.classpath}:\ - ${build.classes.dir} -# Space-separated list of JVM arguments used when running the project. -# You may also define separate properties like run-sys-prop.name=value instead of -Dname=value. -# To set system properties for unit tests define test-sys-prop.name=value: -run.jvmargs= -run.test.classpath=\ - ${javac.test.classpath}:\ - ${build.test.classes.dir} -source.encoding=UTF-8 -src.dir=src -test.src.dir=test diff --git a/1401417015 AngelFlag/zad1/nbproject/project.xml b/1401417015 AngelFlag/zad1/nbproject/project.xml deleted file mode 100644 index 90b3e52..0000000 --- a/1401417015 AngelFlag/zad1/nbproject/project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - org.netbeans.modules.java.j2seproject - - - zad1 - - - - - - - - - diff --git a/1401417015 AngelFlag/zad1/src/zad1/Zad1.java b/1401417015 AngelFlag/zad1/src/zad1/Zad1.java deleted file mode 100644 index d98b776..0000000 --- a/1401417015 AngelFlag/zad1/src/zad1/Zad1.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package zad1; - -import java.util.Arrays; -import java.util.Random; -/** - * - * @author THE NET - */ -public class Zad1 { - - private static int Generate() { - - Random rand = new Random(); - int n = rand.nextInt(201); - return n-100; } - -//private static int generate() { Random rand = new Random(); int n = rand.nextInt(201); return n-100; - public static void main(String[] args) { - - } - -} diff --git a/1401417015 AngelFlag/zad1/src/zad1/random.java b/1401417015 AngelFlag/zad1/src/zad1/random.java deleted file mode 100644 index c74ee45..0000000 --- a/1401417015 AngelFlag/zad1/src/zad1/random.java +++ /dev/null @@ -1,62 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ - - - -package zad1; -import java.util.*; -/** - * - * @author THE NET - */ -public class random { - /*public static void main(String[] args) { - // TODO Auto-generated method stub - - getRandomMembers(); - - }*/ - - - private static int getRandomNum(int range) { - Random rand = new Random(); - - return Math.abs(rand.nextInt()) % range + 1; - } - - private static int[] printArray(int[] randArray ){ - System.out.print("Random array from -100 to 100 [ "); - for (int print: randArray) { - System.out.print(print + ", "); - } - System.out.print("]"); - System.out.println(); - return randArray; - } - - - - public void getRandomMembers() { - int c = getRandomNum(50); - int [] randArray = new int[c]; - int membersCount = 0; - boolean isEven = false; - for (int i = 0; i < c; i++) { - randArray[i] = getRandomNum(200) -100; - if (randArray[i] <= 30 && randArray[i] >= -30 ) { - if(isEven = i % 2 == 0) { - membersCount++; - } - } - - } - - printArray(randArray); - System.out.println(membersCount + " from array elements are in interval from -30 to 30 and have even index" ); - - } -} - From 438dc1cf0ffe5eb205a04ae09e072986d71ec7fa Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 23 Dec 2014 21:41:09 +0200 Subject: [PATCH 35/41] Update --- .gitattributes | 17 - 1401417015 AngelFlag/2_1/build.xml | 73 ++++ 1401417015 AngelFlag/2_1/manifest.mf | 3 + 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 23 + .../Exam2_1bdowhile/build.xml | 73 ++++ .../Exam2_1bdowhile/manifest.mf | 3 + .../src/exam2_1bdowhile/Exam2_1bdowhile.java | 25 ++ 1401417015 AngelFlag/Fibonacci/build.xml | 73 ++++ 1401417015 AngelFlag/Fibonacci/manifest.mf | 3 + .../Fibonacci/src/fibonacci/Fibonacci.java | 34 ++ 1401417015 AngelFlag/Human/build.xml | 73 ++++ 1401417015 AngelFlag/Human/manifest.mf | 3 + .../Human/src/human/Human.java | 36 ++ .../Human/src/human/student.java | 24 ++ .../Human/src/human/usingHuman.java | 21 + .../Human/src/human/usingStudent.java | 20 + 1401417015 AngelFlag/MyCalculator/build.xml | 73 ++++ 1401417015 AngelFlag/MyCalculator/manifest.mf | 3 + .../src/MyCalculator/jCalculator.form | 294 +++++++++++++ .../src/MyCalculator/jCalculator.java | 397 ++++++++++++++++++ 1401417015 AngelFlag/Mybody/build.xml | 73 ++++ 1401417015 AngelFlag/Mybody/manifest.mf | 3 + .../Mybody/src/mybody/Mybody.java | 27 ++ .../Mybody/src/mybody/Person_1.java | 33 ++ .../Mybody/src/mybody/person.java | 14 + .../SquareTriangleP/build.xml | 73 ++++ .../SquareTriangleP/manifest.mf | 3 + .../src/squaretrianglep/Figure.java | 15 + .../src/squaretrianglep/Square.java | 21 + .../src/squaretrianglep/SquareTriangleP.java | 36 ++ .../src/squaretrianglep/Triangle.java | 19 + 1401417015 AngelFlag/animals/build.xml | 73 ++++ 1401417015 AngelFlag/animals/manifest.mf | 3 + .../animals/src/animals/Animal.java | 17 + .../animals/src/animals/Animals.java | 31 ++ .../animals/src/animals/Cat.java | 19 + .../animals/src/animals/Dog.java | 19 + 1401417015 AngelFlag/bigdecimal/build.xml | 73 ++++ 1401417015 AngelFlag/bigdecimal/manifest.mf | 3 + .../bigdecimal/src/bigdecimal/Bigdecimal.java | 29 ++ 1401417015 AngelFlag/cat/build.xml | 73 ++++ 1401417015 AngelFlag/cat/manifest.mf | 3 + 1401417015 AngelFlag/cat/src/cat/cat.java | 47 +++ .../cat/src/cat/catManip.java | 18 + 1401417015 AngelFlag/course/build.xml | 73 ++++ 1401417015 AngelFlag/course/manifest.mf | 3 + .../course/src/course/Course.java | 49 +++ .../course/src/course/Int.java | 14 + .../course/src/course/Person.java | 14 + 1401417015 AngelFlag/datatype/build.xml | 73 ++++ 1401417015 AngelFlag/datatype/manifest.mf | 3 + .../datatype/src/datatype/Datatype.java | 43 ++ 1401417015 AngelFlag/exam1Stoyan/build.xml | 73 ++++ 1401417015 AngelFlag/exam1Stoyan/manifest.mf | 3 + .../exam1Stoyan/src/exam1stoyan/Cilinder.java | 41 ++ .../src/exam1stoyan/Exam1Stoyan.java | 37 ++ .../src/exam1stoyan/Paralelepiped.java | 38 ++ .../src/exam1stoyan/calculateable.java | 16 + 1401417015 AngelFlag/exam1_10/build.xml | 73 ++++ 1401417015 AngelFlag/exam1_10/manifest.mf | 3 + .../exam1_10/src/exam1_10/Exam1_10.java | 44 ++ 1401417015 AngelFlag/exam1task3.2/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task3.2/manifest.mf | 3 + .../src/exam1task3/pkg2/Exam1task32.java | 33 ++ .../exam1task3intTwo/build.xml | 73 ++++ .../exam1task3intTwo/manifest.mf | 3 + .../exam1task3inttwo/Exam1task3intTwo.java | 28 ++ 1401417015 AngelFlag/exam1task4/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task4/manifest.mf | 3 + .../exam1task4/src/exam1task4/Exam1task4.java | 29 ++ 1401417015 AngelFlag/exam1task5/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task5/manifest.mf | 3 + .../exam1task5/src/exam1task5/Exam1task5.java | 30 ++ 1401417015 AngelFlag/exam1task6/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task6/manifest.mf | 3 + .../exam1task6/src/exam1task6/Exam1task6.java | 26 ++ 1401417015 AngelFlag/exam1task7/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task7/manifest.mf | 3 + .../exam1task7/src/exam1task7/Exam1task7.java | 27 ++ 1401417015 AngelFlag/exam1task8/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task8/manifest.mf | 3 + .../exam1task8/src/exam1task8/Exam1task8.java | 32 ++ 1401417015 AngelFlag/exam1task8a/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task8a/manifest.mf | 3 + .../src/exam1task8a/Exam1task8a.java | 32 ++ 1401417015 AngelFlag/exam1task9/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task9/manifest.mf | 3 + .../exam1task9/src/exam1task9/Exam1task9.java | 36 ++ 1401417015 AngelFlag/exam1task9a/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task9a/manifest.mf | 3 + .../src/exam1task9a/Exam1task9a.java | 34 ++ 1401417015 AngelFlag/exam1task9b/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task9b/manifest.mf | 3 + .../src/exam1task9b/Exam1task9b.java | 52 +++ 1401417015 AngelFlag/exam1task9c/build.xml | 73 ++++ 1401417015 AngelFlag/exam1task9c/manifest.mf | 3 + .../src/exam1task9c/Exam1task9c.java | 35 ++ 1401417015 AngelFlag/exam2.8menuA/build.xml | 73 ++++ 1401417015 AngelFlag/exam2.8menuA/manifest.mf | 3 + .../src/exam2/pkg8menua/Exam28menuA.java | 49 +++ 1401417015 AngelFlag/exam2_10/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_10/manifest.mf | 3 + .../exam2_10/src/exam2_10/Exam2_10.java | 31 ++ 1401417015 AngelFlag/exam2_11/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_11/manifest.mf | 3 + .../exam2_11/src/exam2_11/Exam2_11.java | 48 +++ .../exam2_11/src/java/util/input.java | 14 + 1401417015 AngelFlag/exam2_1a/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_1a/manifest.mf | 3 + .../exam2_1a/src/exam2_1a/Exam2_1a.java | 26 ++ 1401417015 AngelFlag/exam2_1c/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_1c/manifest.mf | 3 + .../exam2_1c/src/exam2_1c/Exam2_1c.java | 25 ++ 1401417015 AngelFlag/exam2_2/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_2/manifest.mf | 3 + .../exam2_2/src/exam2_2/Exam2_2.java | 24 ++ 1401417015 AngelFlag/exam2_3/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_3/manifest.mf | 3 + .../exam2_3/src/exam2_3/Exam2_3.java | 28 ++ 1401417015 AngelFlag/exam2_4.1/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_4.1/manifest.mf | 3 + .../exam2_4.1/src/exam2_4/pkg1/Exam2_41.java | 30 ++ 1401417015 AngelFlag/exam2_41a/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_41a/manifest.mf | 3 + .../exam2_41a/src/exam2_41a/Exam2_41a.java | 31 ++ 1401417015 AngelFlag/exam2_5task5/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_5task5/manifest.mf | 3 + .../src/exam2_5task5/Exam2_5task5.java | 43 ++ 1401417015 AngelFlag/exam2_6/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_6/manifest.mf | 3 + .../exam2_6/src/exam2_6/Exam2_6.java | 40 ++ 1401417015 AngelFlag/exam2_7menu/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_7menu/manifest.mf | 3 + .../src/exam2_7menu/Exam2_7menu.java | 44 ++ 1401417015 AngelFlag/exam2_9/build.xml | 73 ++++ 1401417015 AngelFlag/exam2_9/manifest.mf | 3 + .../exam2_9/src/exam2_9/Exam2_9.java | 59 +++ 1401417015 AngelFlag/exam2task2/build.xml | 73 ++++ 1401417015 AngelFlag/exam2task2/manifest.mf | 3 + .../exam2task2/src/exam2task2/Exam2task2.java | 26 ++ 1401417015 AngelFlag/exam3_1/build.xml | 73 ++++ 1401417015 AngelFlag/exam3_1/dist/README.TXT | 32 ++ 1401417015 AngelFlag/exam3_1/dist/exam3_1.jar | Bin 0 -> 1730 bytes 1401417015 AngelFlag/exam3_1/manifest.mf | 3 + .../exam3_1/src/exam3_1/Exam3_1.java | 34 ++ 1401417015 AngelFlag/exam3_2/build.xml | 73 ++++ 1401417015 AngelFlag/exam3_2/manifest.mf | 3 + .../exam3_2/src/exam3_2/Exam3_2.java | 34 ++ 1401417015 AngelFlag/exam3_3/build.xml | 73 ++++ 1401417015 AngelFlag/exam3_3/manifest.mf | 3 + .../exam3_3/src/exam3_3/Exam3_3.java | 34 ++ 1401417015 AngelFlag/exam4_1/build.xml | 73 ++++ 1401417015 AngelFlag/exam4_1/manifest.mf | 3 + .../exam4_1/src/exam4_1/Exam4_1.java | 31 ++ 1401417015 AngelFlag/exam4_2/build.xml | 73 ++++ 1401417015 AngelFlag/exam4_2/manifest.mf | 3 + .../exam4_2/src/exam4_2/Exam4_2.java | 31 ++ 1401417015 AngelFlag/exam4_3/build.xml | 73 ++++ 1401417015 AngelFlag/exam4_3/manifest.mf | 3 + .../exam4_3/src/exam4_3/Exam4_3.java | 31 ++ 1401417015 AngelFlag/exam4_5/build.xml | 73 ++++ 1401417015 AngelFlag/exam4_5/manifest.mf | 3 + .../exam4_5/src/exam4_5/Exam4_5.java | 39 ++ 1401417015 AngelFlag/exam5_1/build.xml | 73 ++++ 1401417015 AngelFlag/exam5_1/manifest.mf | 3 + .../exam5_1/src/exam5_1/Exam5_1.java | 27 ++ .../exam5_1/src/exam5_1/Person.java | 17 + 1401417015 AngelFlag/exam5_3/build.xml | 73 ++++ 1401417015 AngelFlag/exam5_3/manifest.mf | 3 + .../exam5_3/src/exam5_3/Exam5_3.java | 41 ++ .../exam5_3/src/exam5_3/Person.java | 56 +++ 1401417015 AngelFlag/exam5_5/build.xml | 73 ++++ 1401417015 AngelFlag/exam5_5/manifest.mf | 3 + .../exam5_5/src/exam5_5/Exam5_5.java | 25 ++ .../exam5_5/src/exam5_5/Object.java | 15 + 1401417015 AngelFlag/exam5_8/build.xml | 73 ++++ 1401417015 AngelFlag/exam5_8/manifest.mf | 3 + .../exam5_8/src/exam5_8/Dog.java | 41 ++ .../exam5_8/src/exam5_8/Exam5_8.java | 27 ++ .../exam5_8/src/exam5_8/Person.java | 40 ++ 1401417015 AngelFlag/factorial/build.xml | 73 ++++ 1401417015 AngelFlag/factorial/manifest.mf | 3 + .../factorial/src/factorial/Factorial.java | 39 ++ 1401417015 AngelFlag/izpitnaZadacha/build.xml | 73 ++++ .../izpitnaZadacha/manifest.mf | 3 + .../src/izpitnazadacha/Calculatable.java | 14 + .../src/izpitnazadacha/IzpitnaZadacha.java | 28 ++ .../src/izpitnazadacha/Kub.java | 14 + .../src/izpitnazadacha/Paralelepiped.java | 14 + 1401417015 AngelFlag/method/build.xml | 73 ++++ 1401417015 AngelFlag/method/manifest.mf | 3 + .../method/src/method/Method.java | 44 ++ 1401417015 AngelFlag/nfs/build.xml | 73 ++++ 1401417015 AngelFlag/nfs/manifest.mf | 3 + 1401417015 AngelFlag/nfs/src/Vehicle.java | 13 + .../nfs/src/nfs/Drivable.java | 19 + 1401417015 AngelFlag/nfs/src/nfs/Nfs.java | 21 + .../nfs/src/nfs/SportCar.java | 29 ++ 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java | 26 ++ 1401417015 AngelFlag/oop1_MyWorld/build.xml | 73 ++++ 1401417015 AngelFlag/oop1_MyWorld/manifest.mf | 3 + .../src/oop1_myworld/Athlete.java | 14 + .../src/oop1_myworld/Introduceable.java | 17 + .../src/oop1_myworld/Oop1_MyWorld.java | 47 +++ .../oop1_MyWorld/src/oop1_myworld/Person.java | 51 +++ .../src/oop1_myworld/Student.java | 51 +++ 1401417015 AngelFlag/project1_1/build.xml | 73 ++++ 1401417015 AngelFlag/project1_1/manifest.mf | 3 + .../project1_1/src/project1_1/Project1_1.java | 49 +++ 1401417015 AngelFlag/project1_sra/build.xml | 73 ++++ 1401417015 AngelFlag/project1_sra/manifest.mf | 3 + .../src/project1_sra/Project1_sra.java | 61 +++ .../project2_arrayS#@rT/build.xml | 73 ++++ .../project2_arrayS#@rT/manifest.mf | 3 + .../project2_arrays/rt/Project2_arraySRT.java | 164 ++++++++ 1401417015 AngelFlag/projecteasygo/build.xml | 73 ++++ .../projecteasygo/manifest.mf | 3 + .../src/projecteasygo/Projecteasygo.java | 38 ++ 1401417015 AngelFlag/test/build.xml | 73 ++++ 1401417015 AngelFlag/test/manifest.mf | 3 + 1401417015 AngelFlag/test/src/test/Test.java | 364 ++++++++++++++++ 1401417015 AngelFlag/tutorial/build.xml | 73 ++++ 1401417015 AngelFlag/tutorial/manifest.mf | 3 + .../tutorial/src/tutorial/Tutorial.java | 61 +++ 1401417015 AngelFlag/upr1zad2intI=5/build.xml | 73 ++++ .../upr1zad2intI=5/manifest.mf | 3 + .../src/upr1zad2inti/pkg5/Upr1zad2intI5.java | 22 + 1401417015 AngelFlag/upr5_2/build.xml | 73 ++++ 1401417015 AngelFlag/upr5_2/manifest.mf | 3 + .../upr5_2/src/upr5_2/Person.java | 14 + .../upr5_2/src/upr5_2/Upr5_2.java | 21 + 231 files changed, 9081 insertions(+), 17 deletions(-) delete mode 100644 .gitattributes create mode 100644 1401417015 AngelFlag/2_1/build.xml create mode 100644 1401417015 AngelFlag/2_1/manifest.mf create mode 100644 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/build.xml create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf create mode 100644 1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java create mode 100644 1401417015 AngelFlag/Fibonacci/build.xml create mode 100644 1401417015 AngelFlag/Fibonacci/manifest.mf create mode 100644 1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java create mode 100644 1401417015 AngelFlag/Human/build.xml create mode 100644 1401417015 AngelFlag/Human/manifest.mf create mode 100644 1401417015 AngelFlag/Human/src/human/Human.java create mode 100644 1401417015 AngelFlag/Human/src/human/student.java create mode 100644 1401417015 AngelFlag/Human/src/human/usingHuman.java create mode 100644 1401417015 AngelFlag/Human/src/human/usingStudent.java create mode 100644 1401417015 AngelFlag/MyCalculator/build.xml create mode 100644 1401417015 AngelFlag/MyCalculator/manifest.mf create mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form create mode 100644 1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java create mode 100644 1401417015 AngelFlag/Mybody/build.xml create mode 100644 1401417015 AngelFlag/Mybody/manifest.mf create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Mybody.java create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/Person_1.java create mode 100644 1401417015 AngelFlag/Mybody/src/mybody/person.java create mode 100644 1401417015 AngelFlag/SquareTriangleP/build.xml create mode 100644 1401417015 AngelFlag/SquareTriangleP/manifest.mf create mode 100644 1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Figure.java create mode 100644 1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Square.java create mode 100644 1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/SquareTriangleP.java create mode 100644 1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Triangle.java create mode 100644 1401417015 AngelFlag/animals/build.xml create mode 100644 1401417015 AngelFlag/animals/manifest.mf create mode 100644 1401417015 AngelFlag/animals/src/animals/Animal.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Animals.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Cat.java create mode 100644 1401417015 AngelFlag/animals/src/animals/Dog.java create mode 100644 1401417015 AngelFlag/bigdecimal/build.xml create mode 100644 1401417015 AngelFlag/bigdecimal/manifest.mf create mode 100644 1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java create mode 100644 1401417015 AngelFlag/cat/build.xml create mode 100644 1401417015 AngelFlag/cat/manifest.mf create mode 100644 1401417015 AngelFlag/cat/src/cat/cat.java create mode 100644 1401417015 AngelFlag/cat/src/cat/catManip.java create mode 100644 1401417015 AngelFlag/course/build.xml create mode 100644 1401417015 AngelFlag/course/manifest.mf create mode 100644 1401417015 AngelFlag/course/src/course/Course.java create mode 100644 1401417015 AngelFlag/course/src/course/Int.java create mode 100644 1401417015 AngelFlag/course/src/course/Person.java create mode 100644 1401417015 AngelFlag/datatype/build.xml create mode 100644 1401417015 AngelFlag/datatype/manifest.mf create mode 100644 1401417015 AngelFlag/datatype/src/datatype/Datatype.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/build.xml create mode 100644 1401417015 AngelFlag/exam1Stoyan/manifest.mf create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Cilinder.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Paralelepiped.java create mode 100644 1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java create mode 100644 1401417015 AngelFlag/exam1_10/build.xml create mode 100644 1401417015 AngelFlag/exam1_10/manifest.mf create mode 100644 1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java create mode 100644 1401417015 AngelFlag/exam1task3.2/build.xml create mode 100644 1401417015 AngelFlag/exam1task3.2/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java create mode 100644 1401417015 AngelFlag/exam1task3intTwo/build.xml create mode 100644 1401417015 AngelFlag/exam1task3intTwo/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java create mode 100644 1401417015 AngelFlag/exam1task4/build.xml create mode 100644 1401417015 AngelFlag/exam1task4/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java create mode 100644 1401417015 AngelFlag/exam1task5/build.xml create mode 100644 1401417015 AngelFlag/exam1task5/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java create mode 100644 1401417015 AngelFlag/exam1task6/build.xml create mode 100644 1401417015 AngelFlag/exam1task6/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java create mode 100644 1401417015 AngelFlag/exam1task7/build.xml create mode 100644 1401417015 AngelFlag/exam1task7/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java create mode 100644 1401417015 AngelFlag/exam1task8/build.xml create mode 100644 1401417015 AngelFlag/exam1task8/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java create mode 100644 1401417015 AngelFlag/exam1task8a/build.xml create mode 100644 1401417015 AngelFlag/exam1task8a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java create mode 100644 1401417015 AngelFlag/exam1task9/build.xml create mode 100644 1401417015 AngelFlag/exam1task9/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java create mode 100644 1401417015 AngelFlag/exam1task9a/build.xml create mode 100644 1401417015 AngelFlag/exam1task9a/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java create mode 100644 1401417015 AngelFlag/exam1task9b/build.xml create mode 100644 1401417015 AngelFlag/exam1task9b/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java create mode 100644 1401417015 AngelFlag/exam1task9c/build.xml create mode 100644 1401417015 AngelFlag/exam1task9c/manifest.mf create mode 100644 1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java create mode 100644 1401417015 AngelFlag/exam2.8menuA/build.xml create mode 100644 1401417015 AngelFlag/exam2.8menuA/manifest.mf create mode 100644 1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java create mode 100644 1401417015 AngelFlag/exam2_10/build.xml create mode 100644 1401417015 AngelFlag/exam2_10/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java create mode 100644 1401417015 AngelFlag/exam2_11/build.xml create mode 100644 1401417015 AngelFlag/exam2_11/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java create mode 100644 1401417015 AngelFlag/exam2_11/src/java/util/input.java create mode 100644 1401417015 AngelFlag/exam2_1a/build.xml create mode 100644 1401417015 AngelFlag/exam2_1a/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java create mode 100644 1401417015 AngelFlag/exam2_1c/build.xml create mode 100644 1401417015 AngelFlag/exam2_1c/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java create mode 100644 1401417015 AngelFlag/exam2_2/build.xml create mode 100644 1401417015 AngelFlag/exam2_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java create mode 100644 1401417015 AngelFlag/exam2_3/build.xml create mode 100644 1401417015 AngelFlag/exam2_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java create mode 100644 1401417015 AngelFlag/exam2_4.1/build.xml create mode 100644 1401417015 AngelFlag/exam2_4.1/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java create mode 100644 1401417015 AngelFlag/exam2_41a/build.xml create mode 100644 1401417015 AngelFlag/exam2_41a/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java create mode 100644 1401417015 AngelFlag/exam2_5task5/build.xml create mode 100644 1401417015 AngelFlag/exam2_5task5/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java create mode 100644 1401417015 AngelFlag/exam2_6/build.xml create mode 100644 1401417015 AngelFlag/exam2_6/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java create mode 100644 1401417015 AngelFlag/exam2_7menu/build.xml create mode 100644 1401417015 AngelFlag/exam2_7menu/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java create mode 100644 1401417015 AngelFlag/exam2_9/build.xml create mode 100644 1401417015 AngelFlag/exam2_9/manifest.mf create mode 100644 1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java create mode 100644 1401417015 AngelFlag/exam2task2/build.xml create mode 100644 1401417015 AngelFlag/exam2task2/manifest.mf create mode 100644 1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java create mode 100644 1401417015 AngelFlag/exam3_1/build.xml create mode 100644 1401417015 AngelFlag/exam3_1/dist/README.TXT create mode 100644 1401417015 AngelFlag/exam3_1/dist/exam3_1.jar create mode 100644 1401417015 AngelFlag/exam3_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java create mode 100644 1401417015 AngelFlag/exam3_2/build.xml create mode 100644 1401417015 AngelFlag/exam3_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java create mode 100644 1401417015 AngelFlag/exam3_3/build.xml create mode 100644 1401417015 AngelFlag/exam3_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java create mode 100644 1401417015 AngelFlag/exam4_1/build.xml create mode 100644 1401417015 AngelFlag/exam4_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java create mode 100644 1401417015 AngelFlag/exam4_2/build.xml create mode 100644 1401417015 AngelFlag/exam4_2/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java create mode 100644 1401417015 AngelFlag/exam4_3/build.xml create mode 100644 1401417015 AngelFlag/exam4_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java create mode 100644 1401417015 AngelFlag/exam4_5/build.xml create mode 100644 1401417015 AngelFlag/exam4_5/manifest.mf create mode 100644 1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java create mode 100644 1401417015 AngelFlag/exam5_1/build.xml create mode 100644 1401417015 AngelFlag/exam5_1/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java create mode 100644 1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java create mode 100644 1401417015 AngelFlag/exam5_3/build.xml create mode 100644 1401417015 AngelFlag/exam5_3/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java create mode 100644 1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java create mode 100644 1401417015 AngelFlag/exam5_5/build.xml create mode 100644 1401417015 AngelFlag/exam5_5/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java create mode 100644 1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java create mode 100644 1401417015 AngelFlag/exam5_8/build.xml create mode 100644 1401417015 AngelFlag/exam5_8/manifest.mf create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java create mode 100644 1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java create mode 100644 1401417015 AngelFlag/factorial/build.xml create mode 100644 1401417015 AngelFlag/factorial/manifest.mf create mode 100644 1401417015 AngelFlag/factorial/src/factorial/Factorial.java create mode 100644 1401417015 AngelFlag/izpitnaZadacha/build.xml create mode 100644 1401417015 AngelFlag/izpitnaZadacha/manifest.mf create mode 100644 1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Calculatable.java create mode 100644 1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/IzpitnaZadacha.java create mode 100644 1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Kub.java create mode 100644 1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Paralelepiped.java create mode 100644 1401417015 AngelFlag/method/build.xml create mode 100644 1401417015 AngelFlag/method/manifest.mf create mode 100644 1401417015 AngelFlag/method/src/method/Method.java create mode 100644 1401417015 AngelFlag/nfs/build.xml create mode 100644 1401417015 AngelFlag/nfs/manifest.mf create mode 100644 1401417015 AngelFlag/nfs/src/Vehicle.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/Drivable.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/Nfs.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/SportCar.java create mode 100644 1401417015 AngelFlag/nfs/src/nfs/Vehicle.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/build.xml create mode 100644 1401417015 AngelFlag/oop1_MyWorld/manifest.mf create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java create mode 100644 1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java create mode 100644 1401417015 AngelFlag/project1_1/build.xml create mode 100644 1401417015 AngelFlag/project1_1/manifest.mf create mode 100644 1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java create mode 100644 1401417015 AngelFlag/project1_sra/build.xml create mode 100644 1401417015 AngelFlag/project1_sra/manifest.mf create mode 100644 1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/build.xml create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf create mode 100644 1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java create mode 100644 1401417015 AngelFlag/projecteasygo/build.xml create mode 100644 1401417015 AngelFlag/projecteasygo/manifest.mf create mode 100644 1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java create mode 100644 1401417015 AngelFlag/test/build.xml create mode 100644 1401417015 AngelFlag/test/manifest.mf create mode 100644 1401417015 AngelFlag/test/src/test/Test.java create mode 100644 1401417015 AngelFlag/tutorial/build.xml create mode 100644 1401417015 AngelFlag/tutorial/manifest.mf create mode 100644 1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/build.xml create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/manifest.mf create mode 100644 1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java create mode 100644 1401417015 AngelFlag/upr5_2/build.xml create mode 100644 1401417015 AngelFlag/upr5_2/manifest.mf create mode 100644 1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java create mode 100644 1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index bdb0cab..0000000 --- a/.gitattributes +++ /dev/null @@ -1,17 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto - -# Custom for Visual Studio -*.cs diff=csharp - -# Standard to msysgit -*.doc diff=astextplain -*.DOC diff=astextplain -*.docx diff=astextplain -*.DOCX diff=astextplain -*.dot diff=astextplain -*.DOT diff=astextplain -*.pdf diff=astextplain -*.PDF diff=astextplain -*.rtf diff=astextplain -*.RTF diff=astextplain diff --git a/1401417015 AngelFlag/2_1/build.xml b/1401417015 AngelFlag/2_1/build.xml new file mode 100644 index 0000000..af0cda8 --- /dev/null +++ b/1401417015 AngelFlag/2_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project 2_1. + + + diff --git a/1401417015 AngelFlag/2_1/manifest.mf b/1401417015 AngelFlag/2_1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/2_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java new file mode 100644 index 0000000..c7c9088 --- /dev/null +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -0,0 +1,23 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package pkg2_1; +/** + * + * @author THE NET + */ +public class Main { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i=1; + while(i<15) + { + System.out.println(i); + i= i+1; +// TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/build.xml b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml new file mode 100644 index 0000000..d08a182 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Exam2_1bdowhile. + + + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java new file mode 100644 index 0000000..a534d6c --- /dev/null +++ b/1401417015 AngelFlag/Exam2_1bdowhile/src/exam2_1bdowhile/Exam2_1bdowhile.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1bdowhile; + +/** + * + * @author THE NET + */ +public class Exam2_1bdowhile { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + do{System.out.println(i); + i=i+1; + } + while (i<11); + } + +} diff --git a/1401417015 AngelFlag/Fibonacci/build.xml b/1401417015 AngelFlag/Fibonacci/build.xml new file mode 100644 index 0000000..cf3a973 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Fibonacci. + + + diff --git a/1401417015 AngelFlag/Fibonacci/manifest.mf b/1401417015 AngelFlag/Fibonacci/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java new file mode 100644 index 0000000..ee15792 --- /dev/null +++ b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package fibonacci; +import java.util.*; + +/** + * + * @author THE NET + */ +public class Fibonacci { +//using formula from GOD KNOWS WHERE......BUT IT WORKSSSSS + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Scanner input = new Scanner(System.in); + System.out.print("enter number:"); + int number = input.nextInt(); + int count=1; + int c =1,b=1,a=0; + while(count <= number){ + c= b+a; + System.out.print(c); + a = b; + b = c; + count++; + } + + } +} diff --git a/1401417015 AngelFlag/Human/build.xml b/1401417015 AngelFlag/Human/build.xml new file mode 100644 index 0000000..5fc425e --- /dev/null +++ b/1401417015 AngelFlag/Human/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Human. + + + diff --git a/1401417015 AngelFlag/Human/manifest.mf b/1401417015 AngelFlag/Human/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Human/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Human/src/human/Human.java b/1401417015 AngelFlag/Human/src/human/Human.java new file mode 100644 index 0000000..8550f1f --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/Human.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class Human { + String Name; + int Age; + + public Human(String name,int age) + { + this.Name = name;//Name = name; + this.Age = age; //Age = age; + } + @Override + public String toString() + { + return "My name is " + Name +" and I am " + Age + " years old"; + } + /** + * @param args the command line arguments + */ + //public static void main(String[] args) { + // Human metod = new Human("Ivan",20); + // System.out.println(metod.Name + "-" + metod.Age); + // System.out.println(metod.toString()); + // System.out.println(metod); + } + +//} diff --git a/1401417015 AngelFlag/Human/src/human/student.java b/1401417015 AngelFlag/Human/src/human/student.java new file mode 100644 index 0000000..a8883f6 --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/student.java @@ -0,0 +1,24 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class student extends Human{ + String Fi; + + public student(String name, int age, String Fi) { + super(name, age); + this.Fi = Fi; + } + public String toString(){ + + return super.toString() + " Той е студент с Fi: " + Fi; + + } +} diff --git a/1401417015 AngelFlag/Human/src/human/usingHuman.java b/1401417015 AngelFlag/Human/src/human/usingHuman.java new file mode 100644 index 0000000..a2648d2 --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/usingHuman.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class usingHuman { + + public static void main(String[] args) { + Human metod = new Human("Ivan",20); + System.out.println(metod.Name + "-" + metod.Age); + System.out.println(metod.toString()); + System.out.println(metod); + } +} + diff --git a/1401417015 AngelFlag/Human/src/human/usingStudent.java b/1401417015 AngelFlag/Human/src/human/usingStudent.java new file mode 100644 index 0000000..52d81b8 --- /dev/null +++ b/1401417015 AngelFlag/Human/src/human/usingStudent.java @@ -0,0 +1,20 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package human; + +/** + * + * @author THE NET + */ +public class usingStudent { + public static void main(String[] args) { + student с = new student("Иван", 20, "123456"); + System.out.println(с.Name + " - " + с.Age + " - " + с.Fi); + System.out.println(с); + + } + +} diff --git a/1401417015 AngelFlag/MyCalculator/build.xml b/1401417015 AngelFlag/MyCalculator/build.xml new file mode 100644 index 0000000..3e943f2 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project MyCalculator. + + + diff --git a/1401417015 AngelFlag/MyCalculator/manifest.mf b/1401417015 AngelFlag/MyCalculator/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form new file mode 100644 index 0000000..44affc1 --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.form @@ -0,0 +1,294 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java new file mode 100644 index 0000000..e681beb --- /dev/null +++ b/1401417015 AngelFlag/MyCalculator/src/MyCalculator/jCalculator.java @@ -0,0 +1,397 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package MyCalculator; + +/** + * + * @author THE NET + */ +public class jCalculator extends javax.swing.JFrame { + + private double total = 0; + + /** + * Creates new form jCalculator + */ + public jCalculator() { + initComponents(); + } + + /** + * This method is called from within the constructor to initialize the form. + * WARNING: Do NOT modify this code. The content of this method is always + * regenerated by the Form Editor. + */ + @SuppressWarnings("unchecked") + // //GEN-BEGIN:initComponents + private void initComponents() { + + jScrollPane1 = new javax.swing.JScrollPane(); + txtDisplay = new javax.swing.JTextArea(); + jPanel1 = new javax.swing.JPanel(); + Button1 = new javax.swing.JButton(); + Button2 = new javax.swing.JButton(); + Button3 = new javax.swing.JButton(); + Button4 = new javax.swing.JButton(); + Button5 = new javax.swing.JButton(); + Button6 = new javax.swing.JButton(); + Button7 = new javax.swing.JButton(); + Button8 = new javax.swing.JButton(); + Button9 = new javax.swing.JButton(); + Button10 = new javax.swing.JButton(); + jPanel2 = new javax.swing.JPanel(); + btnEqual = new javax.swing.JButton(); + btnPLUS = new javax.swing.JButton(); + btnMinus = new javax.swing.JButton(); + Clear = new javax.swing.JButton(); + + setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); + + txtDisplay.setColumns(20); + txtDisplay.setRows(5); + jScrollPane1.setViewportView(txtDisplay); + + Button1.setText("1"); + Button1.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button1ActionPerformed(evt); + } + }); + + Button2.setText("2"); + Button2.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button2ActionPerformed(evt); + } + }); + + Button3.setText("3"); + Button3.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button3ActionPerformed(evt); + } + }); + + Button4.setText("4"); + Button4.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button4ActionPerformed(evt); + } + }); + + Button5.setText("5"); + Button5.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button5ActionPerformed(evt); + } + }); + + Button6.setText("6"); + Button6.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button6ActionPerformed(evt); + } + }); + + Button7.setText("7"); + Button7.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button7ActionPerformed(evt); + } + }); + + Button8.setText("8"); + Button8.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button8ActionPerformed(evt); + } + }); + + Button9.setText("9"); + Button9.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button9ActionPerformed(evt); + } + }); + + Button10.setText("0"); + Button10.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + Button10ActionPerformed(evt); + } + }); + + btnEqual.setText("="); + btnEqual.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnEqualActionPerformed(evt); + } + }); + + btnPLUS.setText("+"); + btnPLUS.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnPLUSActionPerformed(evt); + } + }); + + btnMinus.setText("_"); + btnMinus.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + btnMinusActionPerformed(evt); + } + }); + + Clear.setFont(new java.awt.Font("Tahoma", 0, 10)); // NOI18N + Clear.setText("CL"); + Clear.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + ClearActionPerformed(evt); + } + }); + + javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2); + jPanel2.setLayout(jPanel2Layout); + jPanel2Layout.setHorizontalGroup( + jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel2Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(btnMinus, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addGroup(jPanel2Layout.createSequentialGroup() + .addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(btnEqual, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(btnPLUS, javax.swing.GroupLayout.PREFERRED_SIZE, 66, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addGap(0, 0, Short.MAX_VALUE)) + .addComponent(Clear, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + .addContainerGap()) + ); + jPanel2Layout.setVerticalGroup( + jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel2Layout.createSequentialGroup() + .addContainerGap() + .addComponent(btnEqual) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(btnPLUS) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(btnMinus) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(Clear) + .addGap(0, 19, Short.MAX_VALUE)) + ); + + javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1); + jPanel1.setLayout(jPanel1Layout); + jPanel1Layout.setHorizontalGroup( + jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button1) + .addGap(18, 18, 18) + .addComponent(Button2) + .addGap(18, 18, 18) + .addComponent(Button3)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button4) + .addGap(18, 18, 18) + .addComponent(Button5) + .addGap(18, 18, 18) + .addComponent(Button6)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(Button7) + .addGap(18, 18, 18) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(Button10) + .addComponent(Button8)) + .addGap(18, 18, 18) + .addComponent(Button9))) + .addGap(12, 12, 12) + .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + ); + jPanel1Layout.setVerticalGroup( + jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(jPanel1Layout.createSequentialGroup() + .addContainerGap() + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button1) + .addComponent(Button2) + .addComponent(Button3)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button4) + .addComponent(Button5) + .addComponent(Button6)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(Button7) + .addComponent(Button8) + .addComponent(Button9)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(Button10) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + .addGroup(jPanel1Layout.createSequentialGroup() + .addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE) + .addGap(0, 11, Short.MAX_VALUE)) + ); + + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); + getContentPane().setLayout(layout); + layout.setHorizontalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap() + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 256, javax.swing.GroupLayout.PREFERRED_SIZE) + .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) + ); + layout.setVerticalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 65, javax.swing.GroupLayout.PREFERRED_SIZE) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED) + .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) + ); + + pack(); + }// //GEN-END:initComponents + + private void Button2ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button2ActionPerformed + String display = txtDisplay.getText() + "2"; + txtDisplay.setText(display); +// TODO add your handling code here: + }//GEN-LAST:event_Button2ActionPerformed + + private void btnMinusActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnMinusActionPerformed + // TODO add your handling code here: + }//GEN-LAST:event_btnMinusActionPerformed + + private void Button1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button1ActionPerformed + // TODO add your handling code here: + String display = txtDisplay.getText() + "1"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button1ActionPerformed + + private void Button3ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button3ActionPerformed + String display = txtDisplay.getText() + "3"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button3ActionPerformed + + private void Button4ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button4ActionPerformed + String display = txtDisplay.getText() + "4"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button4ActionPerformed + + private void Button7ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button7ActionPerformed + String display = txtDisplay.getText() + "7"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button7ActionPerformed + + private void Button5ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button5ActionPerformed + String display = txtDisplay.getText() + "5"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button5ActionPerformed + + private void Button9ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button9ActionPerformed + String display = txtDisplay.getText() + "7"; + txtDisplay.setText(display); // TODO add your handling code here: + }//GEN-LAST:event_Button9ActionPerformed + + private void Button8ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button8ActionPerformed + String display = txtDisplay.getText() + "8"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button8ActionPerformed + + private void Button6ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button6ActionPerformed + String display = txtDisplay.getText() + "6"; + txtDisplay.setText(display); + }//GEN-LAST:event_Button6ActionPerformed + + private void Button10ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_Button10ActionPerformed + // TODO add your handling code here: + }//GEN-LAST:event_Button10ActionPerformed + + private void btnPLUSActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnPLUSActionPerformed + total += Double.parseDouble(txtDisplay.getText()); + txtDisplay.setText("");// TODO add your handling code here: + }//GEN-LAST:event_btnPLUSActionPerformed + + private void ClearActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ClearActionPerformed + total = 0; + txtDisplay.setText(); + // TODO add your handling code here: + }//GEN-LAST:event_ClearActionPerformed + + private void btnEqualActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_btnEqualActionPerformed + + double current = Double.parseDouble(txtDisplay.getText()); + total += current; + txtDisplay.setText(Double.toString(total)); + + txtDisplay.setText(Double.toString(total) + current); +// TODO add your handling code here: + }//GEN-LAST:event_btnEqualActionPerformed + + /** + * @param args the command line arguments + */ + public static void main(String args[]) { + /* Set the Nimbus look and feel */ + // + /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel. + * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html + */ + try { + for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) { + if ("Nimbus".equals(info.getName())) { + javax.swing.UIManager.setLookAndFeel(info.getClassName()); + break; + } + } + } catch (ClassNotFoundException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (InstantiationException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (IllegalAccessException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } catch (javax.swing.UnsupportedLookAndFeelException ex) { + java.util.logging.Logger.getLogger(jCalculator.class.getName()).log(java.util.logging.Level.SEVERE, null, ex); + } + // + + /* Create and display the form */ + java.awt.EventQueue.invokeLater(new Runnable() { + public void run() { + new jCalculator().setVisible(true); + } + }); + } + + // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JButton Button1; + private javax.swing.JButton Button10; + private javax.swing.JButton Button2; + private javax.swing.JButton Button3; + private javax.swing.JButton Button4; + private javax.swing.JButton Button5; + private javax.swing.JButton Button6; + private javax.swing.JButton Button7; + private javax.swing.JButton Button8; + private javax.swing.JButton Button9; + private javax.swing.JButton Clear; + private javax.swing.JButton btnEqual; + private javax.swing.JButton btnMinus; + private javax.swing.JButton btnPLUS; + private javax.swing.JPanel jPanel1; + private javax.swing.JPanel jPanel2; + private javax.swing.JScrollPane jScrollPane1; + private javax.swing.JTextArea txtDisplay; + // End of variables declaration//GEN-END:variables +} diff --git a/1401417015 AngelFlag/Mybody/build.xml b/1401417015 AngelFlag/Mybody/build.xml new file mode 100644 index 0000000..cae3171 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Mybody. + + + diff --git a/1401417015 AngelFlag/Mybody/manifest.mf b/1401417015 AngelFlag/Mybody/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java b/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java new file mode 100644 index 0000000..2bd94c4 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/Mybody.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +public class Mybody { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Person Angel = new Person(); + //Angel.name ="Angel"; + //Angel.age = 33; + Angel.setName("Angel"); + Angel.setAge(33); + + System.out.println("I am a person!" + "My name is:" + Angel.getName() + " и съм на " + Angel.getAge() +"Години"); + } + +} diff --git a/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java b/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java new file mode 100644 index 0000000..1fd3ef1 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/Person_1.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +class Person { + private String name; + private int age; + + // Name + public String getName(){ + return name; + } + + public void setName(String name){ + this.name= name; + } + public int getAge(){ + return age; + } + + public void setAge(int age) { + this.age=age; + } +} + + diff --git a/1401417015 AngelFlag/Mybody/src/mybody/person.java b/1401417015 AngelFlag/Mybody/src/mybody/person.java new file mode 100644 index 0000000..3caefc2 --- /dev/null +++ b/1401417015 AngelFlag/Mybody/src/mybody/person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package mybody; + +/** + * + * @author THE NET + */ +class person { + +} diff --git a/1401417015 AngelFlag/SquareTriangleP/build.xml b/1401417015 AngelFlag/SquareTriangleP/build.xml new file mode 100644 index 0000000..f7a6e31 --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project SquareTriangleP. + + + diff --git a/1401417015 AngelFlag/SquareTriangleP/manifest.mf b/1401417015 AngelFlag/SquareTriangleP/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Figure.java b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Figure.java new file mode 100644 index 0000000..586e6e7 --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Figure.java @@ -0,0 +1,15 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package squaretrianglep; + +/** + * + * @author THE NET + */ +public abstract class Figure { + + public abstract double P( ); +} diff --git a/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Square.java b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Square.java new file mode 100644 index 0000000..d54f48a --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Square.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package squaretrianglep; + +/** + * + * @author THE NET + */ +public class Square extends Figure{ + private double a=1.0; + public Square(double a){ + this.a=a;} + public double P(){return 4.0*a;} + public String toString() + {return "Квадрат със страна " + a + " и периметър " +P() + ".";} + + + } diff --git a/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/SquareTriangleP.java b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/SquareTriangleP.java new file mode 100644 index 0000000..688e03f --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/SquareTriangleP.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package squaretrianglep; + +import java.awt.BorderLayout; + +/** + * + * @author THE NET + */ +public class SquareTriangleP { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + //Да се създадат обекти квадрат със страна 1,5 и триъгълник със страни 3, 4 и 5. + //Да се изведат данните за двете фигури. + //Да се дефинира функция за намиране сумата от периметрите на две дадени фигури, + //всяка от които може да бъде и квадрат, и триъгълник. + //Да се изведе сумата от периметрите на създадените квадрат и триъгълник. + // TODO code application logic here + Square S = new Square(1.5); + Triangle T = new Triangle(3.0,4.0,5.0); + System.out.println(S); + System.out.println(T); + System.out.println("Сумата от периметрите е " + SumP(S,T)); + } + public static double SumP( Figure F1, Figure F2 ) + { return F1.P()+F2.P(); } + + } + diff --git a/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Triangle.java b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Triangle.java new file mode 100644 index 0000000..6236b69 --- /dev/null +++ b/1401417015 AngelFlag/SquareTriangleP/src/squaretrianglep/Triangle.java @@ -0,0 +1,19 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package squaretrianglep; + +/** + * + * @author THE NET + */ +public class Triangle extends Figure { + private double a=1.0 , b=1.0 , c=1.0; +public Triangle( double a , double b , double c ) { this.a=a; this.b=b; this.c=c; } +public double P( ) { return a+b+c; } +public String toString( ) { +return "Триъгълник със страни "+a+", "+b+" и "+c+" и периметър "+P()+"."; + } +} diff --git a/1401417015 AngelFlag/animals/build.xml b/1401417015 AngelFlag/animals/build.xml new file mode 100644 index 0000000..fed16b2 --- /dev/null +++ b/1401417015 AngelFlag/animals/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project animals. + + + diff --git a/1401417015 AngelFlag/animals/manifest.mf b/1401417015 AngelFlag/animals/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/animals/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/animals/src/animals/Animal.java b/1401417015 AngelFlag/animals/src/animals/Animal.java new file mode 100644 index 0000000..24d446e --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Animal.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Animal { + public void makeNoise() { + System.out.println("Grrrrrrrrr"); + } +} + \ No newline at end of file diff --git a/1401417015 AngelFlag/animals/src/animals/Animals.java b/1401417015 AngelFlag/animals/src/animals/Animals.java new file mode 100644 index 0000000..445ba33 --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Animals.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Animals { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Animal[] myAnimals = new Animal[5]; + Cat fluffy = new Cat(); + Dog sharo = new Dog(); + + + myAnimals[0] = fluffy; + myAnimals[1] = sharo; + + myAnimals[0].makeNoise(); + myAnimals[1].makeNoise(); + + } + +} diff --git a/1401417015 AngelFlag/animals/src/animals/Cat.java b/1401417015 AngelFlag/animals/src/animals/Cat.java new file mode 100644 index 0000000..bdc28b5 --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Cat.java @@ -0,0 +1,19 @@ +w/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Cat extends Animal { + + @Override + public void makeNoise() { + System.out.println("Miauuuuuuu"); + } + +} diff --git a/1401417015 AngelFlag/animals/src/animals/Dog.java b/1401417015 AngelFlag/animals/src/animals/Dog.java new file mode 100644 index 0000000..17424b1 --- /dev/null +++ b/1401417015 AngelFlag/animals/src/animals/Dog.java @@ -0,0 +1,19 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package animals; + +/** + * + * @author THE NET + */ +public class Dog extends Animal{ + + @Override + public void makeNoise() { + super.makeNoise(); + } + +} diff --git a/1401417015 AngelFlag/bigdecimal/build.xml b/1401417015 AngelFlag/bigdecimal/build.xml new file mode 100644 index 0000000..3e16295 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project bigdecimal. + + + diff --git a/1401417015 AngelFlag/bigdecimal/manifest.mf b/1401417015 AngelFlag/bigdecimal/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java new file mode 100644 index 0000000..b463317 --- /dev/null +++ b/1401417015 AngelFlag/bigdecimal/src/bigdecimal/Bigdecimal.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package bigdecimal; + +/** + * + * @author THE NET + */ +import java.math.BigDecimal; +public class Bigdecimal { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double sum = 0.0d; + BigDecimal bdValue = new BigDecimal("0.1"); + BigDecimal bdSum = new BigDecimal("0.0"); + for(int i=1; i<=10; i++) { + sum += 0.1d; + bdSum = bdSum.add(bdValue); +} + System.out.println("Double sum is: " + sum); + System.out.println("BigDecimal sum is: " + bdSum); + + } +} diff --git a/1401417015 AngelFlag/cat/build.xml b/1401417015 AngelFlag/cat/build.xml new file mode 100644 index 0000000..45e3f89 --- /dev/null +++ b/1401417015 AngelFlag/cat/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project cat. + + + diff --git a/1401417015 AngelFlag/cat/manifest.mf b/1401417015 AngelFlag/cat/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/cat/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/cat/src/cat/cat.java b/1401417015 AngelFlag/cat/src/cat/cat.java new file mode 100644 index 0000000..e0f905c --- /dev/null +++ b/1401417015 AngelFlag/cat/src/cat/cat.java @@ -0,0 +1,47 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package cat; + +/** + * + * @author THE NET + */ +public class cat { + + private String name; + private String color; + + cat(String johny, String green) { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + + public String getName() { + return this.name; + } + public void setName(String name) { + this.name = name; + } + public String getColor() { + return this.color; + } + + public void setColor(String color) { + this.color = color; + } + + public cat(){ + this.name= "Lisi"; + this.color= "gray"; + } + + /** + * + */ + public void sayMiau(){ + System.out.printf("Cat %s said: Miauuuuuu!%n", name); + } + + } \ No newline at end of file diff --git a/1401417015 AngelFlag/cat/src/cat/catManip.java b/1401417015 AngelFlag/cat/src/cat/catManip.java new file mode 100644 index 0000000..ca65b71 --- /dev/null +++ b/1401417015 AngelFlag/cat/src/cat/catManip.java @@ -0,0 +1,18 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package cat; + +/** + * + * @author THE NET + */ +public class catManip { + public static void main(String[] args) { + cat method = new cat("johny", "green"); + System.out.println(method); + + } +} diff --git a/1401417015 AngelFlag/course/build.xml b/1401417015 AngelFlag/course/build.xml new file mode 100644 index 0000000..0fe5937 --- /dev/null +++ b/1401417015 AngelFlag/course/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project course. + + + diff --git a/1401417015 AngelFlag/course/manifest.mf b/1401417015 AngelFlag/course/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/course/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/course/src/course/Course.java b/1401417015 AngelFlag/course/src/course/Course.java new file mode 100644 index 0000000..a6200c9 --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Course.java @@ -0,0 +1,49 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +import java.util.Scanner; + +//Дефинирайте клас който отразява човек. +//За решаване на конкретен проблем от всички характерситики на човека ни интересуват име, +//фамилия и години. Класът трябва да съдържа функционалност, +//която позволява на всеки конкретен обект +//от този клас да се представи с името, фамилията и възрастта си. +public class Course { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner Keyboard= new Scanner(System.in); + + System.out.println("Какво е вашето име?"); + String Name = Keyboard.nextLine(); + + System.out.println("Каква е вашата фамилия?"); + String Family = Keyboard.nextLine(); + + System.out.println("На колко години сте?"); + int Age = Keyboard.nextInt(); + + + Person(); + } + + + public static void Person() { + String Name = ("Angel"); + int Age = 33; + + System.out.print("Моето име е:" + Name + " И съм на " + Age + "Години"); + } +} + + \ No newline at end of file diff --git a/1401417015 AngelFlag/course/src/course/Int.java b/1401417015 AngelFlag/course/src/course/Int.java new file mode 100644 index 0000000..ad60180 --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Int.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +class Int { + +} diff --git a/1401417015 AngelFlag/course/src/course/Person.java b/1401417015 AngelFlag/course/src/course/Person.java new file mode 100644 index 0000000..3cb1fef --- /dev/null +++ b/1401417015 AngelFlag/course/src/course/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package course; + +/** + * + * @author THE NET + */ +public class Person { + +} diff --git a/1401417015 AngelFlag/datatype/build.xml b/1401417015 AngelFlag/datatype/build.xml new file mode 100644 index 0000000..4b9f932 --- /dev/null +++ b/1401417015 AngelFlag/datatype/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project datatype. + + + diff --git a/1401417015 AngelFlag/datatype/manifest.mf b/1401417015 AngelFlag/datatype/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/datatype/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/datatype/src/datatype/Datatype.java b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java new file mode 100644 index 0000000..93b6053 --- /dev/null +++ b/1401417015 AngelFlag/datatype/src/datatype/Datatype.java @@ -0,0 +1,43 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package datatype; + +import java.io.IOException; +import java.util.*; + + public class Datatype { + + public static void main(String[] args) throws IOException { + + byte myByte = 2; + short myShort = 257; + int myInt = -123; + long myLong = 123L; + float myFloat = 2.34F; + double myDouble =2.54; + char myChar = 'c'; + boolean myBoolean = true; //false; + String myName = " Stoyan"; + + System.out.println(myName); + System.out.print(myName); + + int ch; + ch= System.in.read(); + { + double sum = 0.0; + for(int i=1; i<=10; i++) + { + sum += 0.1; + { +System.out.println(sum); + } + } + + } + }} + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1Stoyan/build.xml b/1401417015 AngelFlag/exam1Stoyan/build.xml new file mode 100644 index 0000000..dfaaa75 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1Stoyan. + + + diff --git a/1401417015 AngelFlag/exam1Stoyan/manifest.mf b/1401417015 AngelFlag/exam1Stoyan/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Cilinder.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Cilinder.java new file mode 100644 index 0000000..fe6dd5a --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Cilinder.java @@ -0,0 +1,41 @@ +package exam1stoyan; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public class Cilinder implements calculateable { + + private double r; + private double h; + + @Override + public void readParameters() { + System.out.print("\nPlease enter r: "); + System.out.println(""); + r = Exam1Stoyan.input.nextDouble(); + System.out.print("\nPlease enter h: "); + System.out.println(""); + h = Exam1Stoyan.input.nextDouble(); + System.out.println("\n Obemat e: "); + //System.out.println("obemat e:" + calculateV); + } + + @Override + public double calculateV() { + return Math.PI *(r * r) *h; + } +////Ако прав кръгов цилиндър има височина h и радиус r, то обемът му се дава с формулата + //V = \PI r^2 h, + + + + +} + diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java new file mode 100644 index 0000000..9e77dd3 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java @@ -0,0 +1,37 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1stoyan; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam1Stoyan { + public static Scanner input=new Scanner(System.in); + + /** + * @param args the command line arguments + */ + //Чрез диалог да се избере или куб, или цилиндър. Какъвто и да е изборът, чрез + //един и същ програмен код да се въведат размерите на фигурата и да се изведе обемът й. + //Обем на куб V \, = \, a^3 \, = \, a . a . a + // + //Ако прав кръгов цилиндър има височина h и радиус r, то обемът му се дава с формулата + //V = \PI r^2 h, + // TODO code application logic here + public static void main(String[] args) { + System.out.println("Please choose the figure 1.Cilinder, 2.Paralelepiped"); + int choice = input.nextInt(); + + calculateable figure; + if (choice == 1) figure = new Cilinder(); + else figure = new Paralelepiped();// TODO code application logic here + figure.readParameters(); + System.out.printf("%.2f", figure.calculateV()); + } + + +} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Paralelepiped.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Paralelepiped.java new file mode 100644 index 0000000..37ebf72 --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Paralelepiped.java @@ -0,0 +1,38 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1stoyan; + +/** + * + * @author THE NET + */ +public class Paralelepiped implements calculateable { + + private double a; + private double b; + private double h; + + @Override + public void readParameters() { + System.out.print("\n Please enter a: "); + a = Exam1Stoyan.input.nextDouble(); + + System.out.print("\n Please enter b: "); + b = Exam1Stoyan.input.nextDouble(); + + System.out.print("\n Please enter h: "); + h = Exam1Stoyan.input.nextDouble(); + System.out.print("\n Обемът е: "); + } + + @Override + public double calculateV() { + //return ((a+b)/2)*h; + return a*b*h; + + } + } + diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java new file mode 100644 index 0000000..31c8cab --- /dev/null +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/calculateable.java @@ -0,0 +1,16 @@ +package exam1stoyan; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public interface calculateable { + void readParameters(); + double calculateV(); +} diff --git a/1401417015 AngelFlag/exam1_10/build.xml b/1401417015 AngelFlag/exam1_10/build.xml new file mode 100644 index 0000000..ca0fa68 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1_10. + + + diff --git a/1401417015 AngelFlag/exam1_10/manifest.mf b/1401417015 AngelFlag/exam1_10/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java b/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java new file mode 100644 index 0000000..1582886 --- /dev/null +++ b/1401417015 AngelFlag/exam1_10/src/exam1_10/Exam1_10.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1_10; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1_10 { + /** + */ + public static void f(double a, double b){ + + System.out.println((a*a + (2*a-(b*b)) + 7*b)); + + } + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете а="); + Double a = scanner.nextDouble(); + + System.out.print("Въведете b="); + Double b = scanner.nextDouble(); + + System.out.print("Въведете c="); + Double c = scanner.nextDouble(); + + System.out.print("Въведете d="); + Double d = scanner.nextDouble(); + + scanner.close(); + + System.out.println(a + b + c +d); + f(a,b); + f(a,d); + f(b,c); + + } + } \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task3.2/build.xml b/1401417015 AngelFlag/exam1task3.2/build.xml new file mode 100644 index 0000000..6f39574 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3.2. + + + diff --git a/1401417015 AngelFlag/exam1task3.2/manifest.mf b/1401417015 AngelFlag/exam1task3.2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java new file mode 100644 index 0000000..5512122 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3.2/src/exam1task3/pkg2/Exam1task32.java @@ -0,0 +1,33 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3.pkg2; + +/** + * + * @author THE NET + */ +public class Exam1task32 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + m(d1,d2); + m(d2 , d1); + m(2.0,1.2); + + } + public static void m(double d1, double d2){ + + System.out.println(d1 + "+" + d2 +"=" + (d1+d2));//l + System.out.println(d1 + "-" + d2 + "=" + (d1-d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + +} +} diff --git a/1401417015 AngelFlag/exam1task3intTwo/build.xml b/1401417015 AngelFlag/exam1task3intTwo/build.xml new file mode 100644 index 0000000..c136fd3 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task3intTwo. + + + diff --git a/1401417015 AngelFlag/exam1task3intTwo/manifest.mf b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java new file mode 100644 index 0000000..d02e43d --- /dev/null +++ b/1401417015 AngelFlag/exam1task3intTwo/src/exam1task3inttwo/Exam1task3intTwo.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task3inttwo; + +/** + * + * @author FlagBg + */ +public class Exam1task3intTwo { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double d1=5.2; double d2=2.3; + + System.out.println(d1 + "+" + d2 + "=" + (d1 + d2));// + System.out.println(d1 + "-" + d2 + "=" + (d1 - d2)); + System.out.println(d1 + "*" + d2 + "=" + (d1 * d2)); + System.out.println(d1 + "/" + d2 + "=" + (d1 / d2)); + + } + } + + \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task4/build.xml b/1401417015 AngelFlag/exam1task4/build.xml new file mode 100644 index 0000000..a142014 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task4. + + + diff --git a/1401417015 AngelFlag/exam1task4/manifest.mf b/1401417015 AngelFlag/exam1task4/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java new file mode 100644 index 0000000..d0a294b --- /dev/null +++ b/1401417015 AngelFlag/exam1task4/src/exam1task4/Exam1task4.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task4; + +/** + * + * @author THE NET + */ +public class Exam1task4 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i, j; + i=10; j = i++; + System.out.println(j); // 10 + i=10; j = ++i; + System.out.println(j); // 11 + i=10; j = i--; + System.out.println(j); // 10 + i=10; j = --i; + System.out.println(j); // 9 + + } +} diff --git a/1401417015 AngelFlag/exam1task5/build.xml b/1401417015 AngelFlag/exam1task5/build.xml new file mode 100644 index 0000000..71d585c --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task5. + + + diff --git a/1401417015 AngelFlag/exam1task5/manifest.mf b/1401417015 AngelFlag/exam1task5/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java new file mode 100644 index 0000000..534a0c6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task5/src/exam1task5/Exam1task5.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task5; + +/** + * + * @author THE NET + */ +public class Exam1task5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + float f =1.25f; + f+=5; + System.out.println(f); + f-=2; + System.out.println(f); + f*=10; + System.out.println(f); + f/=10; + System.out.println(f); + + // TODO code application logic here + } +} diff --git a/1401417015 AngelFlag/exam1task6/build.xml b/1401417015 AngelFlag/exam1task6/build.xml new file mode 100644 index 0000000..e4340a8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task6. + + + diff --git a/1401417015 AngelFlag/exam1task6/manifest.mf b/1401417015 AngelFlag/exam1task6/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java b/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java new file mode 100644 index 0000000..05d0347 --- /dev/null +++ b/1401417015 AngelFlag/exam1task6/src/exam1task6/Exam1task6.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task6; + +/** + * + * @author THE NET + */ +public class Exam1task6 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + boolean b; + b = (1==1); + System.out.println(b); + b = (1==2); + System.out.println(b); + //yes! + } + +} diff --git a/1401417015 AngelFlag/exam1task7/build.xml b/1401417015 AngelFlag/exam1task7/build.xml new file mode 100644 index 0000000..66534a8 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task7. + + + diff --git a/1401417015 AngelFlag/exam1task7/manifest.mf b/1401417015 AngelFlag/exam1task7/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java new file mode 100644 index 0000000..2828509 --- /dev/null +++ b/1401417015 AngelFlag/exam1task7/src/exam1task7/Exam1task7.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task7; + +/** + * + * @author THE NET + */ +public class Exam1task7 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; int s2 = 6; + System.out.println(s1==s2); + System.out.println(s1s2); + System.out.println(s1<=s2); + System.out.println(s1>=s2); + + } + +} diff --git a/1401417015 AngelFlag/exam1task8/build.xml b/1401417015 AngelFlag/exam1task8/build.xml new file mode 100644 index 0000000..d6560b6 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8. + + + diff --git a/1401417015 AngelFlag/exam1task8/manifest.mf b/1401417015 AngelFlag/exam1task8/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java new file mode 100644 index 0000000..38447aa --- /dev/null +++ b/1401417015 AngelFlag/exam1task8/src/exam1task8/Exam1task8.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task8 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете i= "); + int i = scanner.nextInt(); + + System.out.print("Въведете j = "); + int j = scanner.nextInt(); + + scanner.close (); + System.out.println(i + j); + + } +} + diff --git a/1401417015 AngelFlag/exam1task8a/build.xml b/1401417015 AngelFlag/exam1task8a/build.xml new file mode 100644 index 0000000..a516268 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task8a. + + + diff --git a/1401417015 AngelFlag/exam1task8a/manifest.mf b/1401417015 AngelFlag/exam1task8a/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java new file mode 100644 index 0000000..6a7b627 --- /dev/null +++ b/1401417015 AngelFlag/exam1task8a/src/exam1task8a/Exam1task8a.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task8a; + +/** + * + * @author THE NET + */ +public class Exam1task8a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + short s1=5; + short s2=6; + System.out.println(true && true); + System.out.println((s2>=s1) && (s1+1 ==s2)); + System.out.println(true || false); + System.out.println((s1s2)); + System.out.println(!(s1 + + + + + + + + + + Builds, tests, and runs the project exam1task9. + + + diff --git a/1401417015 AngelFlag/exam1task9/manifest.mf b/1401417015 AngelFlag/exam1task9/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java new file mode 100644 index 0000000..5305a99 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9/src/exam1task9/Exam1task9.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9 { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете две цели числа и низ: i1 i2 s1 = "); + int i1, i2; + String s; + i1 = scanner.nextInt(); + i2 = scanner.nextInt(); + s = scanner.next(); + + System.out.println(i1+i2); + System.out.println(s); + + scanner.close(); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9a/build.xml b/1401417015 AngelFlag/exam1task9a/build.xml new file mode 100644 index 0000000..e38e264 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9a. + + + diff --git a/1401417015 AngelFlag/exam1task9a/manifest.mf b/1401417015 AngelFlag/exam1task9a/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java new file mode 100644 index 0000000..5e04c3a --- /dev/null +++ b/1401417015 AngelFlag/exam1task9a/src/exam1task9a/Exam1task9a.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9a; + +/** + * + * @author THE NET + */ +public class Exam1task9a { + + /** + * @param args the command line arguments + */ + private static void bigger(double d1, double d2) { + + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } +} + + public static void main(String[] args) { + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + + + } + +} diff --git a/1401417015 AngelFlag/exam1task9b/build.xml b/1401417015 AngelFlag/exam1task9b/build.xml new file mode 100644 index 0000000..917d741 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9b. + + + diff --git a/1401417015 AngelFlag/exam1task9b/manifest.mf b/1401417015 AngelFlag/exam1task9b/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java new file mode 100644 index 0000000..fd618e9 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9b/src/exam1task9b/Exam1task9b.java @@ -0,0 +1,52 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9b; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +public class Exam1task9b { + + /** + * @param args the command line arguments + */ + public static void bigger(double d1, double d2) { + double d3 = d1 * d2; + if(d3>50); + {System.out.println(d1 + "*" + d2 + "=" + d3); + } + } + public static void main(String[] args) + { + f(11,12); + double d1 = 4.5; double d2 = 5; + bigger(d1,d2); + bigger(5,10); + bigger(5,11); + Scanner scanner = new Scanner(System.in); + System.out.print("Въведете d1= "); + int i = scanner.nextInt(); + + System.out.print("Въведете d2 = "); + int j = scanner.nextInt(); + + scanner.close (); + if((i*j)>50); + System.out.println(i * j); + + } + private static void Falcon(double 28, double 3.4); + + System.out.println(a1*) + } +{ + +} + + +} diff --git a/1401417015 AngelFlag/exam1task9c/build.xml b/1401417015 AngelFlag/exam1task9c/build.xml new file mode 100644 index 0000000..7e0dd45 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam1task9c. + + + diff --git a/1401417015 AngelFlag/exam1task9c/manifest.mf b/1401417015 AngelFlag/exam1task9c/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java new file mode 100644 index 0000000..f588176 --- /dev/null +++ b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java @@ -0,0 +1,35 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam1task9c; + +/** + * + * @author THE NET + */ +public class Exam1task9c { + + /** + * @param d1 + * @param d2 + */ + public static void m(double d1, double d2){ + if (d1+d2> 20) + System.out.println((d1+d2)*(d1-d2)); + else + System.out.println((d1+d2)/5)); + + } + public static void main(String[] args) { + m(11,15); + m(5,11); + + } + public static void f(double a, double b){ + + + System.out.println(a*a + 2*(a-b*b)+7*b); + } +} diff --git a/1401417015 AngelFlag/exam2.8menuA/build.xml b/1401417015 AngelFlag/exam2.8menuA/build.xml new file mode 100644 index 0000000..a3cce98 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2.8menuA. + + + diff --git a/1401417015 AngelFlag/exam2.8menuA/manifest.mf b/1401417015 AngelFlag/exam2.8menuA/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java new file mode 100644 index 0000000..a371938 --- /dev/null +++ b/1401417015 AngelFlag/exam2.8menuA/src/exam2/pkg8menua/Exam28menuA.java @@ -0,0 +1,49 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2.pkg8menua; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam28menuA { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Меню"); + System.out.println(" 1. Теглене на сума"); + System.out.println(" 2. Промяна на PIN"); + System.out.println(" 3. Проверка на наличност"); + System.out.println(" 4. Настройки"); + System.out.println(" 5. Изход"); + //System.out.print("Изберете възможност (1-5): "); + + Scanner Keyboard = new Scanner(System.in); + + int избор = Keyboard.nextInt(); + String текст; + + do{ + System.out.print("Изберете възможност (1-5): "); + избор = Keyboard.nextInt(); + switch(избор){ // + + case 1: текст = "Вие избрахте 1: Теглене на сума"; break; + case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; + case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; + case 4: текст = "Вие избрахте 4: Настройки"; break; + case 5: текст = "Вие избрахте 5: Изход"; break; + default: текст = "Въвели сте грешен избор!"; +} + + System.out.println(текст ); + } while(избор!=5); +Keyboard.close(); + } + +} diff --git a/1401417015 AngelFlag/exam2_10/build.xml b/1401417015 AngelFlag/exam2_10/build.xml new file mode 100644 index 0000000..92cae60 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_10. + + + diff --git a/1401417015 AngelFlag/exam2_10/manifest.mf b/1401417015 AngelFlag/exam2_10/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java b/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java new file mode 100644 index 0000000..8faafb7 --- /dev/null +++ b/1401417015 AngelFlag/exam2_10/src/exam2_10/Exam2_10.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_10; + +/** + * + * @author THE NET + */ +public class Exam2_10 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + double m[] = {1.1,2.2,3.3,4.4,5.5}; //double m[] = new double[5]; + //m[0] = 1.1; + for(double alabala:m) + System.out.println(alabala);//m[1] = 2.2; + + //m[2]=3.3; + //m[3]=4.4; + //m[4]=5.5; +//for(int i=0; i<5; i++) + // System.out.println(m[i]); + //for(int i=0; i + + + + + + + + + + Builds, tests, and runs the project exam2_11. + + + diff --git a/1401417015 AngelFlag/exam2_11/manifest.mf b/1401417015 AngelFlag/exam2_11/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java new file mode 100644 index 0000000..b86e82c --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java @@ -0,0 +1,48 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_11; +//import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_11 { + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + int[] myArray = {1,2,3,4,5}; + int[] array = {1,2,3,4,5}; + m1(myArray); + m2(array); + } + + public static void m1(int[] m) { + + for (int i=0; i=0; i--){ + System.out.println(n[i]); + + } + } + +//Scanner inphut = new Scanner(System.in); + //int n = input.nextInt(); + //int[] array = new int[n]; + +//for(int i= 0; i < n; i++) { + //array[i] = input.nextInt(); + + } + +} +} diff --git a/1401417015 AngelFlag/exam2_11/src/java/util/input.java b/1401417015 AngelFlag/exam2_11/src/java/util/input.java new file mode 100644 index 0000000..424527e --- /dev/null +++ b/1401417015 AngelFlag/exam2_11/src/java/util/input.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package java.util; + +/** + * + * @author THE NET + */ +public class input { + +} diff --git a/1401417015 AngelFlag/exam2_1a/build.xml b/1401417015 AngelFlag/exam2_1a/build.xml new file mode 100644 index 0000000..b6c18f1 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1a. + + + diff --git a/1401417015 AngelFlag/exam2_1a/manifest.mf b/1401417015 AngelFlag/exam2_1a/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java new file mode 100644 index 0000000..793b437 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1a/src/exam2_1a/Exam2_1a.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1a; + +/** + * + * @author THE NET + */ +public class Exam2_1a { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 1; + while(i<11) + { + System.out.println(i); + i=i+1; + } +} +} + diff --git a/1401417015 AngelFlag/exam2_1c/build.xml b/1401417015 AngelFlag/exam2_1c/build.xml new file mode 100644 index 0000000..cd7af87 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_1c. + + + diff --git a/1401417015 AngelFlag/exam2_1c/manifest.mf b/1401417015 AngelFlag/exam2_1c/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java new file mode 100644 index 0000000..54ea182 --- /dev/null +++ b/1401417015 AngelFlag/exam2_1c/src/exam2_1c/Exam2_1c.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_1c; + +/** + * + * @author THE NET + */ +public class Exam2_1c { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + for(int i=1; i<91; i++){ + System.out.println(i); + + } +} + + } + diff --git a/1401417015 AngelFlag/exam2_2/build.xml b/1401417015 AngelFlag/exam2_2/build.xml new file mode 100644 index 0000000..1a7e773 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_2. + + + diff --git a/1401417015 AngelFlag/exam2_2/manifest.mf b/1401417015 AngelFlag/exam2_2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java new file mode 100644 index 0000000..6ef0803 --- /dev/null +++ b/1401417015 AngelFlag/exam2_2/src/exam2_2/Exam2_2.java @@ -0,0 +1,24 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_2; + +/** + * + * @author THE NET + */ +public class Exam2_2 { +//otpechataite chislata ot 1 do 20 v obraten red + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + for(int i=20; i>1; i=i-1) + + System.out.println(i); + } + +} diff --git a/1401417015 AngelFlag/exam2_3/build.xml b/1401417015 AngelFlag/exam2_3/build.xml new file mode 100644 index 0000000..1fb502f --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_3. + + + diff --git a/1401417015 AngelFlag/exam2_3/manifest.mf b/1401417015 AngelFlag/exam2_3/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java b/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java new file mode 100644 index 0000000..627c617 --- /dev/null +++ b/1401417015 AngelFlag/exam2_3/src/exam2_3/Exam2_3.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_3; + +/** + * + * @author THE NET + */ +public class Exam2_3 { + + /** + * @param args the command line arguments + */ + //Отпечатайте 5 пъти буквата ‘а’ и веднага след това 10 пъти ‘б’. + public static void main(String[] args) { + int i; + for(i=1; i<=5; i++); + + System.out.println("a"); + for(i=1; i<=10; i--); + System.out.println("B"); + + } + +} diff --git a/1401417015 AngelFlag/exam2_4.1/build.xml b/1401417015 AngelFlag/exam2_4.1/build.xml new file mode 100644 index 0000000..c3e553a --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_4.1. + + + diff --git a/1401417015 AngelFlag/exam2_4.1/manifest.mf b/1401417015 AngelFlag/exam2_4.1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java new file mode 100644 index 0000000..fec7b31 --- /dev/null +++ b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java @@ -0,0 +1,30 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_4.pkg1; + +/** + * + * @author THE NET + */ + +public class Exam2_41 { + + public static void max1(int i1, int i2){ + int max = i1; + if (max < i2) + max = i2; + + System.out.println(max); + } + //Създайте метод, който извежда максималното от две цели числа зададени като формални параметри. + //Извикайте метода в основната програма. + + public static void main(String[] args) { + max1(2,25); + max1(1,23); + max1(34,4); + + } diff --git a/1401417015 AngelFlag/exam2_41a/build.xml b/1401417015 AngelFlag/exam2_41a/build.xml new file mode 100644 index 0000000..c73abfe --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_41a. + + + diff --git a/1401417015 AngelFlag/exam2_41a/manifest.mf b/1401417015 AngelFlag/exam2_41a/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java b/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java new file mode 100644 index 0000000..03bf788 --- /dev/null +++ b/1401417015 AngelFlag/exam2_41a/src/exam2_41a/Exam2_41a.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_41a; + +/** + * + * @author THE NET + */ +public class Exam2_41a { + + public static void printMax(float number1, float number2){ + + float max = number1; + if(number2 > number1) { + max = number2; + } + System.out.println("Max number is:" + max); + } + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + printMax(2,23); + printMax(12312,12132); + printMax(1,22); + + } +} diff --git a/1401417015 AngelFlag/exam2_5task5/build.xml b/1401417015 AngelFlag/exam2_5task5/build.xml new file mode 100644 index 0000000..35e652d --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_5task5. + + + diff --git a/1401417015 AngelFlag/exam2_5task5/manifest.mf b/1401417015 AngelFlag/exam2_5task5/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java b/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java new file mode 100644 index 0000000..cd2a214 --- /dev/null +++ b/1401417015 AngelFlag/exam2_5task5/src/exam2_5task5/Exam2_5task5.java @@ -0,0 +1,43 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_5task5; + +/** + * + * @author THE NET + */ +import java.util.*; + +public class Exam2_5task5 { + //Зад. 5 - СР +//Като използвате функцията max от зад. 4.2. +//създайте основна програма s три цели числа от конзолата и намирате, максималното от тях. + + public static void max1(int a, int b, int c){ + + int max = (a > b && a > c) ? a : ((b > a && b > c) ? b : c); + System.out.println(max); + } + + public static void main(String[] args) { + + Scanner scanner = new Scanner(System.in); + + System.out.print("Въведете a= "); + int a = scanner.nextInt(); + + System.out.print("Въведете b = "); + int b = scanner.nextInt(); + + System.out.print("Вуведете c = "); + int c = scanner.nextInt(); + + scanner.close(); + + max1(a,b,c); + + } +} diff --git a/1401417015 AngelFlag/exam2_6/build.xml b/1401417015 AngelFlag/exam2_6/build.xml new file mode 100644 index 0000000..7faba51 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_6. + + + diff --git a/1401417015 AngelFlag/exam2_6/manifest.mf b/1401417015 AngelFlag/exam2_6/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java new file mode 100644 index 0000000..bc055c6 --- /dev/null +++ b/1401417015 AngelFlag/exam2_6/src/exam2_6/Exam2_6.java @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_6; + +import java.util.Scanner; + +/** + * + * @author THE NET + */ +public class Exam2_6 { + + public static void m1(int a, int b){ + + int m = a; + if (m > b) + m = b; + // + + System.out.println(m); + //m=m+1; + } + public static void main(String[] args) { + Scanner scanner = new Scanner(System.in); + + System.out.println("Въведете стойност за a:"); + int a = scanner.nextInt(); + + System.out.println("Въведете стойност за b:"); + int b = scanner.nextInt(); + + scanner.close(); + + m1(a,b); + } + +} diff --git a/1401417015 AngelFlag/exam2_7menu/build.xml b/1401417015 AngelFlag/exam2_7menu/build.xml new file mode 100644 index 0000000..db4649b --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_7menu. + + + diff --git a/1401417015 AngelFlag/exam2_7menu/manifest.mf b/1401417015 AngelFlag/exam2_7menu/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java new file mode 100644 index 0000000..5f4e92c --- /dev/null +++ b/1401417015 AngelFlag/exam2_7menu/src/exam2_7menu/Exam2_7menu.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_7menu; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_7menu { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + System.out.println("Меню"); // Извеждане на менюто в конзолата + System.out.println(" 1. Теглене на сума"); + System.out.println(" 2. Промяна на PIN"); + System.out.println(" 3. Проверка на наличност"); + System.out.println(" 4. Настройки"); + System.out.println(" 5. Изход"); + System.out.print("Изберете възможност (1-5): "); + + Scanner Keyboard = new Scanner(System.in); + int избор = Keyboard.nextInt(); + + String текст; + switch(избор){ // В зависимост от стойността на „избор”... + case 1: текст = "Вие избрахте 1: Теглене на сума"; break; + case 2: текст = "Вие избрахте 2: Промяна на PIN"; break; + case 3: текст = "Вие избрахте 3: Проверка на наличност"; break; + case 4: текст = "Вие избрахте 4: Настройки"; break; + case 5: текст = "Вие избрахте 5: Изход"; break; + default: текст = "Въвели сте грешен избор!"; +} + System.out.println(текст ); + Keyboard.close(); + + } + +} diff --git a/1401417015 AngelFlag/exam2_9/build.xml b/1401417015 AngelFlag/exam2_9/build.xml new file mode 100644 index 0000000..89019b6 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2_9. + + + diff --git a/1401417015 AngelFlag/exam2_9/manifest.mf b/1401417015 AngelFlag/exam2_9/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java b/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java new file mode 100644 index 0000000..151cad5 --- /dev/null +++ b/1401417015 AngelFlag/exam2_9/src/exam2_9/Exam2_9.java @@ -0,0 +1,59 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam2_9; +import java.util.Scanner; +/** + * + * @author THE NET + */ +public class Exam2_9 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println("Изберете число от едно до дванадесет:"); + //System.out.println ("1 ");//= Януари + //System.out.println ("2"); //= Февруари + //System.out.println ("3"); //= Март + //System.out.println ("4"); //= Април + //System.out.println ("5"); //= Май + //System.out.println ("6"); //= Юни + //System.out.println ("7"); //= Юли + //System.out.println ("8"); //= Август + //System.out.println ("9");//= Септември + //System.out.println ("10");// = Октомври + //System.out.println ("11");//; = Ноември + //System.out.println ("12"); //= Декември + + + Scanner Keyboard = new Scanner(System.in); + int избор = Keyboard.nextInt(); + String Текст; + + do{ + System.out.println("Изберете число от едно до дванадесет"); + избор= Keyboard.nextInt(); + switch(избор){ + case 1: Текст = "Вие избрахте 1 - Януари"; break; + case 2: Текст = "Вие избрахте 2 - Февруари";break; + case 3: Текст = "Вие избрахте 3 - Март"; break; + case 4: Текст = "Вие избрахте 4 - Април";break; + case 5: Текст = "Вие избрахте 5 - МАй";break; + case 6: Текст = "Вие избрахте 6 - Юни";break; + case 7: Текст = "Вие избрахте 7 - Юли";break; + case 8: Текст = "Вие избрахте 8 - Август";break; + case 9: Текст = "Вие избрахте 9 - Септември";break; + case 10: Текст = "Вие избрахте 10 - Октомври";break; + case 11: Текст = "Вие избрахте 11 - Ноември";break; + case 12: Текст = "Вие избрахте 12 - Декември";break; + default: Текст = "Въведете число от едно до дванадесет!"; + } + System.out.println(Текст); + }while(избор!=13); + Keyboard.close(); + } +} diff --git a/1401417015 AngelFlag/exam2task2/build.xml b/1401417015 AngelFlag/exam2task2/build.xml new file mode 100644 index 0000000..ee1009f --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam2task2. + + + diff --git a/1401417015 AngelFlag/exam2task2/manifest.mf b/1401417015 AngelFlag/exam2task2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java new file mode 100644 index 0000000..0c80c1e --- /dev/null +++ b/1401417015 AngelFlag/exam2task2/src/exam2task2/Exam2task2.java @@ -0,0 +1,26 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +package exam2task2; + +/** + * + * @author THE NET + */ +public class Exam2task2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + + for(int i=22; i>1; i=i-2) + + System.out.println(i); + } + } + diff --git a/1401417015 AngelFlag/exam3_1/build.xml b/1401417015 AngelFlag/exam3_1/build.xml new file mode 100644 index 0000000..9985cb3 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_1. + + + diff --git a/1401417015 AngelFlag/exam3_1/dist/README.TXT b/1401417015 AngelFlag/exam3_1/dist/README.TXT new file mode 100644 index 0000000..1fbf232 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/dist/README.TXT @@ -0,0 +1,32 @@ +======================== +BUILD OUTPUT DESCRIPTION +======================== + +When you build an Java application project that has a main class, the IDE +automatically copies all of the JAR +files on the projects classpath to your projects dist/lib folder. The IDE +also adds each of the JAR files to the Class-Path element in the application +JAR files manifest file (MANIFEST.MF). + +To run the project from the command line, go to the dist folder and +type the following: + +java -jar "exam3_1.jar" + +To distribute this project, zip up the dist folder (including the lib folder) +and distribute the ZIP file. + +Notes: + +* If two JAR files on the project classpath have the same name, only the first +JAR file is copied to the lib folder. +* Only JAR files are copied to the lib folder. +If the classpath contains other types of files or folders, these files (folders) +are not copied. +* If a library on the projects classpath also has a Class-Path element +specified in the manifest,the content of the Class-Path element has to be on +the projects runtime path. +* To set a main class in a standard Java project, right-click the project node +in the Projects window and choose Properties. Then click Run and enter the +class name in the Main Class field. Alternatively, you can manually type the +class name in the manifest Main-Class element. diff --git a/1401417015 AngelFlag/exam3_1/dist/exam3_1.jar b/1401417015 AngelFlag/exam3_1/dist/exam3_1.jar new file mode 100644 index 0000000000000000000000000000000000000000..3f7131d102fe3f707894dfc750e33356f86fe731 GIT binary patch literal 1730 zcmaJ>TW=dh6#mwBeA%vZacm-Aw2NHW8uuMoj4a5d*;lX`}t<}R5$$r83+Ta@oft@=OvM=>!lhriFRaH|N?>Lr0 z=5^j|c3F-79lfbW<#U4^)4t-y?FUPlqDP~0RK8gM2vPz)3=FatwLbr+@xyWe5Oa1! zYv49h7s;PI|Mhp0t>7aWQ;0{PAR(4y2q~FvAs)s%f~LdB2$~IJQP8CjmczI$lj=$Y zckr%^_plnmT?v5-H#7;ctw;O|o^5jTAiLw(x_PiB!Jj`MkyMfpyr-MGb6>(-{HkIp zu}6LimP*PKTe_)LIz~;icX_SpdbS9@J#OpbJYWW#hTfJiwKW7|P$mTp_J8UB)<2Rk z-hX=fUH|y>>;99|!_#jhgdNLEO~On(aWxN0!l0WJNq%-!>L$tU0}4BRjab51qhoNg zmUpaUBZLlXmj-;Z;R0LA>3E+0X_^NuV5Vo36tjuY}X!X zb%!o3E-DT3R!cKg3F&Jt>?(GHyb1n=c8Y!BC)Wy_xBKq$+Yj`#uM`6#SgkZ=iQi!yN?fIMySZw z2L7v*pD1c`f5^&bJ5}k?ZTO&pFSIPH&LCLjC1Us))W> zyyfQbc6C$o&G`SjZ<7{{N&J}?^sF^|UHshix;`!p#CUv|qV>#lq^pkx7am;o!6G`L rH$?ChK|g%@m#r>$#-ZKg!;eR-hTo~%C##!dL7^6)-`_-gW8(BL3T|^Y literal 0 HcmV?d00001 diff --git a/1401417015 AngelFlag/exam3_1/manifest.mf b/1401417015 AngelFlag/exam3_1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java b/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java new file mode 100644 index 0000000..9f01ba3 --- /dev/null +++ b/1401417015 AngelFlag/exam3_1/src/exam3_1/Exam3_1.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_1; + +/** + * + * @author THE NET + */ +public class Exam3_1 { + + String Name; //String Name; + int Age; // int Age; + + public Exam3_1(String име, int възраст){ //public Exam3_1(String име, int възраст){ + Name = име; + Age = възраст; + } + public String toString() + { + return "My name is " + Name +" and I am " + Age + " years old"; + } + + public static void main(String[] args) { + Exam3_1 human = new Exam3_1("sadfas",26); + + System.out.print(human); + + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/exam3_2/build.xml b/1401417015 AngelFlag/exam3_2/build.xml new file mode 100644 index 0000000..f7af854 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_2. + + + diff --git a/1401417015 AngelFlag/exam3_2/manifest.mf b/1401417015 AngelFlag/exam3_2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java new file mode 100644 index 0000000..c72ea7e --- /dev/null +++ b/1401417015 AngelFlag/exam3_2/src/exam3_2/Exam3_2.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_2; + +/** + * + * @author THE NET + */ +public class Exam3_2 { + + /** + * @param args the command line arguments + */ + + public static void srednoAritm(double m[]){ + + double suma = 0; + for (int i = 0; i < m.length; i++) + suma += m[i]; + + double rezultat = suma / m.length; + System.out.println("Средно аритметичната сума е: " + rezultat); + } + + public static void main(String[] args) { + double m[] = {4.8,-4.1,5,-2,7}; + + srednoAritm(m); + +} +} diff --git a/1401417015 AngelFlag/exam3_3/build.xml b/1401417015 AngelFlag/exam3_3/build.xml new file mode 100644 index 0000000..2b45e70 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam3_3. + + + diff --git a/1401417015 AngelFlag/exam3_3/manifest.mf b/1401417015 AngelFlag/exam3_3/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java b/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java new file mode 100644 index 0000000..70eba8b --- /dev/null +++ b/1401417015 AngelFlag/exam3_3/src/exam3_3/Exam3_3.java @@ -0,0 +1,34 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam3_3; + +/** + * + * @author THE NET + */ +public class Exam3_3 { + + /** + * @param args the command line arguments + */ + + + public static void sumPluselem(double m[]){ + double suma = 0; + for (int i = 0; i < m.length; i++) + if (m[i] > 0) + suma += m[i]; + + System.out.println("Сумата на положителните елементи: " + suma); + + } + public static void main(String[] args) { + double m[] = {4.8,-4.1,5,-2,7}; + + sumPluselem(m); + } + +} diff --git a/1401417015 AngelFlag/exam4_1/build.xml b/1401417015 AngelFlag/exam4_1/build.xml new file mode 100644 index 0000000..383ee54 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam4_1. + + + diff --git a/1401417015 AngelFlag/exam4_1/manifest.mf b/1401417015 AngelFlag/exam4_1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java b/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java new file mode 100644 index 0000000..427bb3f --- /dev/null +++ b/1401417015 AngelFlag/exam4_1/src/exam4_1/Exam4_1.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_1; + +/** + * + * @author THE NET + */ +public class Exam4_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин","Ивдианаполис"}; + низовеЗапочващиС(imena, "Ив"); + + } + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Низове започващи с " + search + ":"); + + for(int i=0; i + + + + + + + + + + Builds, tests, and runs the project exam4_2. + + + diff --git a/1401417015 AngelFlag/exam4_2/manifest.mf b/1401417015 AngelFlag/exam4_2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java new file mode 100644 index 0000000..0ca613e --- /dev/null +++ b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_2; + +/** + * + * @author THE NET + */ +public class Exam4_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; + низовеЗапочващиС(imena, "и"); + } + + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Елементи съдържащи 'и'" + search + ":"); + + for (int i=0; i + + + + + + + + + + Builds, tests, and runs the project exam4_3. + + + diff --git a/1401417015 AngelFlag/exam4_3/manifest.mf b/1401417015 AngelFlag/exam4_3/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java b/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java new file mode 100644 index 0000000..bb5760e --- /dev/null +++ b/1401417015 AngelFlag/exam4_3/src/exam4_3/Exam4_3.java @@ -0,0 +1,31 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_3; + +/** + * + * @author THE NET + */ +public class Exam4_3 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + String imena[] = {"Иван","Мария","Петър","Ивайло","Марин"}; + низовеЗавършващи(imena, "ин"); + // За масив от низове, изведете елементите завършващи с "ин" + } + public static void низовеЗавършващи(String m[], String search){ + System.out.println("низовеЗавършващи s " + search + ":"); + + for (int i=0; i + + + + + + + + + + Builds, tests, and runs the project exam4_5. + + + diff --git a/1401417015 AngelFlag/exam4_5/manifest.mf b/1401417015 AngelFlag/exam4_5/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java b/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java new file mode 100644 index 0000000..f5a099f --- /dev/null +++ b/1401417015 AngelFlag/exam4_5/src/exam4_5/Exam4_5.java @@ -0,0 +1,39 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam4_5; + +/** + * + * @author THE NET + */ +public class Exam4_5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + System.out.println(факториелЦикъл(4)); + System.out.println(факториелРекурсия(4)); + } + + public static long факториелЦикъл(int num) { + long result = 1; + + for (int i = 2; i <= num; i++) + result *= i; + + return result; + } + + public static long факториелРекурсия(int num) { + if(num<2) // Условие за край - прекъсване на рекурсията + return 1; + + return num*факториелРекурсия(num-1); + + } + +} diff --git a/1401417015 AngelFlag/exam5_1/build.xml b/1401417015 AngelFlag/exam5_1/build.xml new file mode 100644 index 0000000..92f809b --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_1. + + + diff --git a/1401417015 AngelFlag/exam5_1/manifest.mf b/1401417015 AngelFlag/exam5_1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java new file mode 100644 index 0000000..c16e317 --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/src/exam5_1/Exam5_1.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_1; + +/** + * + * @author THE NET + */ +public class Exam5_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person(); + Angel.name = "Angel"; + Angel.surname = "Bayraktarov"; + Angel.age = 34; + + System.out.println("I am a person! My name is " + Angel.name + " " + Angel.surname + " and I am " + Angel.age + " old"); + } + +} diff --git a/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java b/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java new file mode 100644 index 0000000..f26f3fc --- /dev/null +++ b/1401417015 AngelFlag/exam5_1/src/exam5_1/Person.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_1; + +/** + * + * @author THE NET + */ +public class Person { + public String name; + public String surname; + public int age; + +} diff --git a/1401417015 AngelFlag/exam5_3/build.xml b/1401417015 AngelFlag/exam5_3/build.xml new file mode 100644 index 0000000..d52336c --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_3. + + + diff --git a/1401417015 AngelFlag/exam5_3/manifest.mf b/1401417015 AngelFlag/exam5_3/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java new file mode 100644 index 0000000..daf7d17 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/src/exam5_3/Exam5_3.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_3; + +/** + * + * @author THE NET + */ +public class Exam5_3 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person("Angel","Bayraktarov", 30); + //Angel.name = "Angel"; + //Angel.age = 33; + //Angel.setName("Angel"); + //Angel.setSurname("Bayraktarov"); + //Angel.setAge(33); + Angel.introduceYourself(); + + //System.out.println("I am a person! My name is " + Angel.getName() + " " + Angel.getSurname() + " and I am " + Angel.getAge() + " Old"); + + Person Nina = new Person("Nina", "Genov", 30); + //Nina.setName("Nina"); + //Nina.setSurname("Genov"); + //Nina.setAge(30); + Nina.introduceYourself(); + //System.out.println("I am a person! My name is " + Nina.getName() + " " + Nina.getSurname() + " and I am " + Nina.getAge() + " Old"); + + Person Ivan = new Person(); + Ivan.introduceYourself(); + } + + +} diff --git a/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java b/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java new file mode 100644 index 0000000..72c7af2 --- /dev/null +++ b/1401417015 AngelFlag/exam5_3/src/exam5_3/Person.java @@ -0,0 +1,56 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_3; + +/** + * + * @author THE NET + */ +public class Person { + private String name; + private String surname; + private int age; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public String getSurname() { + return surname; + } + + public void setSurname(String surname) { + this.surname = surname; + } + + public Person(String name, String surname, int age) { + this.name = name; + this.surname = surname; + this.age = age; + } + + public Person(){ + this("Ivan","Hadj",20); + } + + public void introduceYourself(){ + System.out.println("I am a person! My name is " + name +" " + surname + " and I am " + age + " Old"); + } + + +} diff --git a/1401417015 AngelFlag/exam5_5/build.xml b/1401417015 AngelFlag/exam5_5/build.xml new file mode 100644 index 0000000..0da7c84 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_5. + + + diff --git a/1401417015 AngelFlag/exam5_5/manifest.mf b/1401417015 AngelFlag/exam5_5/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java new file mode 100644 index 0000000..749c723 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/src/exam5_5/Exam5_5.java @@ -0,0 +1,25 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_5; + +/** + * + * @author THE NET + */ +public class Exam5_5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Object Alabala = new Object(); + Alabala.object = "Object"; + + System.out.println(Alabala.object); + } + +} diff --git a/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java b/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java new file mode 100644 index 0000000..258b1a0 --- /dev/null +++ b/1401417015 AngelFlag/exam5_5/src/exam5_5/Object.java @@ -0,0 +1,15 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_5; + +/** + * + * @author THE NET + */ +public class Object { + public String object; + +} diff --git a/1401417015 AngelFlag/exam5_8/build.xml b/1401417015 AngelFlag/exam5_8/build.xml new file mode 100644 index 0000000..e3a567f --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam5_8. + + + diff --git a/1401417015 AngelFlag/exam5_8/manifest.mf b/1401417015 AngelFlag/exam5_8/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java new file mode 100644 index 0000000..14b7775 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Dog.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Dog { + private String Poroda; + private int age; + + public String getPoroda() { + return Poroda; + } + + public void setPoroda(String Poroda) { + this.Poroda = Poroda; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Dog(String Poroda, int age) { + this.Poroda = Poroda; + this.age = age; + } + public void moetoDog(){ + + System.out.println(" и моето куче е " + Poroda + " и е на " + age + " години"); + } + +} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java new file mode 100644 index 0000000..573248d --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Exam5_8.java @@ -0,0 +1,27 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Exam5_8 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + Person Angel = new Person("Angel",30); + + Angel.introduceYourself(); + + Dog sharo = new Dog("Sharo",5); + sharo.moetoDog(); + } + +} diff --git a/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java b/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java new file mode 100644 index 0000000..ff61a32 --- /dev/null +++ b/1401417015 AngelFlag/exam5_8/src/exam5_8/Person.java @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam5_8; + +/** + * + * @author THE NET + */ +public class Person { + private String name; + private int age; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public int getAge() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Person(String name, int age) { + this.name = name; + this.age = age; + } + public void introduceYourself(){ + System.out.println("I am a person! My name is " + name + " I am " + age + " Old " ); + } + +} diff --git a/1401417015 AngelFlag/factorial/build.xml b/1401417015 AngelFlag/factorial/build.xml new file mode 100644 index 0000000..1b96186 --- /dev/null +++ b/1401417015 AngelFlag/factorial/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project factorial. + + + diff --git a/1401417015 AngelFlag/factorial/manifest.mf b/1401417015 AngelFlag/factorial/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/factorial/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/factorial/src/factorial/Factorial.java b/1401417015 AngelFlag/factorial/src/factorial/Factorial.java new file mode 100644 index 0000000..4b754fe --- /dev/null +++ b/1401417015 AngelFlag/factorial/src/factorial/Factorial.java @@ -0,0 +1,39 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + + +package factorial; +import java.util.*; + +/** + * + * @author THE NET + */ +public class Factorial { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int n, c, fact = 1; + + System.out.println("Enter an integer to calculate factorial"); + Scanner in = new Scanner(System.in); + n = in.nextInt(); + + if ( n < 0 ) + System.out.println("Number should be non-negative."); + else + { + for ( c = 1 ; c <= n ; c++ ) + fact = fact*c; + + System.out.println("Factorial of "+n+" is = "+fact); + } + +} +} + diff --git a/1401417015 AngelFlag/izpitnaZadacha/build.xml b/1401417015 AngelFlag/izpitnaZadacha/build.xml new file mode 100644 index 0000000..a8db401 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project izpitnaZadacha. + + + diff --git a/1401417015 AngelFlag/izpitnaZadacha/manifest.mf b/1401417015 AngelFlag/izpitnaZadacha/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Calculatable.java b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Calculatable.java new file mode 100644 index 0000000..4d07024 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Calculatable.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package izpitnazadacha; + +/** + * + * @author THE NET + */ +public interface Calculatable { + +} diff --git a/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/IzpitnaZadacha.java b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/IzpitnaZadacha.java new file mode 100644 index 0000000..90c6a09 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/IzpitnaZadacha.java @@ -0,0 +1,28 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package izpitnazadacha; + +/** + * + * @author THE NET + */ +public class IzpitnaZadacha { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // Задача 1 + //Чрез диалог да се избере или куб, или цилиндър. Какъвто и да е изборът, чрез + //един и същ програмен код да се въведат размерите на фигурата и да се изведе обемът й. + //Обем на куб V \, = \, a^3 \, = \, a . a . a + // + //Ако прав кръгов цилиндър има височина h и радиус r, то обемът му се дава с формулата + //V = \PI r^2 h, + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Kub.java b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Kub.java new file mode 100644 index 0000000..67a98d5 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Kub.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package izpitnazadacha; + +/** + * + * @author THE NET + */ +public class Kub { + +} diff --git a/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Paralelepiped.java b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Paralelepiped.java new file mode 100644 index 0000000..8259f85 --- /dev/null +++ b/1401417015 AngelFlag/izpitnaZadacha/src/izpitnazadacha/Paralelepiped.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package izpitnazadacha; + +/** + * + * @author THE NET + */ +public class Paralelepiped { + +} diff --git a/1401417015 AngelFlag/method/build.xml b/1401417015 AngelFlag/method/build.xml new file mode 100644 index 0000000..a60832f --- /dev/null +++ b/1401417015 AngelFlag/method/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project method. + + + diff --git a/1401417015 AngelFlag/method/manifest.mf b/1401417015 AngelFlag/method/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/method/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/method/src/method/Method.java b/1401417015 AngelFlag/method/src/method/Method.java new file mode 100644 index 0000000..7a1831e --- /dev/null +++ b/1401417015 AngelFlag/method/src/method/Method.java @@ -0,0 +1,44 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package method; + +/** + * + * @author THE NET + */ +import java.util.Scanner; +import java.util.*; +public class Method { +public static final double FAVNUMBER = 1.6180; + +private String name; +private int weight; +private boolean hasOwner = false; +private byte age; +private long uniqueID; +private char favoriteChar; +private double speed; +private float height; + +protected static int numberofAnimals = 0; + +static Scanner userinput = new Scanner(System.in); + +public Animal P() { + numberofAnimals++; + + int sumofNumbers = 5+1; + System.out.println(private) +} + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/nfs/build.xml b/1401417015 AngelFlag/nfs/build.xml new file mode 100644 index 0000000..f7ea841 --- /dev/null +++ b/1401417015 AngelFlag/nfs/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project nfs. + + + diff --git a/1401417015 AngelFlag/nfs/manifest.mf b/1401417015 AngelFlag/nfs/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/nfs/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/nfs/src/Vehicle.java b/1401417015 AngelFlag/nfs/src/Vehicle.java new file mode 100644 index 0000000..c3a44e9 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/Vehicle.java @@ -0,0 +1,13 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +class Vehicle { + +} diff --git a/1401417015 AngelFlag/nfs/src/nfs/Drivable.java b/1401417015 AngelFlag/nfs/src/nfs/Drivable.java new file mode 100644 index 0000000..bbd2639 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/Drivable.java @@ -0,0 +1,19 @@ +package nfs; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public interface Drivable { + void turnLeft(); + void turnRgight(); + void breakCar(); + void accelerate(); + +} diff --git a/1401417015 AngelFlag/nfs/src/nfs/Nfs.java b/1401417015 AngelFlag/nfs/src/nfs/Nfs.java new file mode 100644 index 0000000..8cef2a4 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/Nfs.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nfs; + +/** + * + * @author THE NET + */ +public class Nfs { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/nfs/src/nfs/SportCar.java b/1401417015 AngelFlag/nfs/src/nfs/SportCar.java new file mode 100644 index 0000000..29bd201 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/SportCar.java @@ -0,0 +1,29 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nfs; + +/** + * + * @author THE NET + */ +public abstract class SportCar extends Vehicle { + public SportCar(String laber){ + setLabel(label); + setType("Sport Car"); + } +} + + @Override + public void turnLeft(){ + +} + @Override + public void turnRight(){ + + } + @Override + public void breakCar(){ + } \ No newline at end of file diff --git a/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java b/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java new file mode 100644 index 0000000..8754f88 --- /dev/null +++ b/1401417015 AngelFlag/nfs/src/nfs/Vehicle.java @@ -0,0 +1,26 @@ +package nfs; + +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +/** + * + * @author THE NET + */ +public abstract class Vehicle implements Drivable { + private String type; + private String label; + + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/build.xml b/1401417015 AngelFlag/oop1_MyWorld/build.xml new file mode 100644 index 0000000..084713f --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project oop1_MyWorld. + + + diff --git a/1401417015 AngelFlag/oop1_MyWorld/manifest.mf b/1401417015 AngelFlag/oop1_MyWorld/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java new file mode 100644 index 0000000..5727366 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Athlete { + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java new file mode 100644 index 0000000..b8f594e --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public interface Introduceable { + //public int age = 40; + //public static final double Pi = 3.14; + public void introduceYourself(); + //void mandatadory(int par1, String par2); +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java new file mode 100644 index 0000000..0357580 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java @@ -0,0 +1,47 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Oop1_MyWorld { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + System.out.println("I am proud with my greatest invention PI " + Person.PI); + // TODO code application logic here + Person angel = new Person("Angel", 30); + //angel.name = "Angel"; + //angel.Age = 33; + //angel.setName("Angel"); + //angel.setAge(33); + //System.out.println("I am a person! My name is " + angel.name + " I am " + angel.Age + " Old"); + //System.out.println("I am a person! My name is " + angel.getName() + " I am " + angel.getage() + " Old"); + angel.introduceYourself(); + + Person mariya = new Person("mariya", 21); + //mariya.name = "Mari + // mariya.Age = 30; + //mariya.setName("Mariya"); + //mariya.setAge(30); + //System.out.println("I am a person! My name is " + mariya.name + " I am " + mariya.Age + " Old"); + //System.out.println("I am a person! My name is " + mariya.getName() + " I am " + mariya.getage() + " Old"); + + mariya.introduceYourself(); + Person Anonymous = new Person(); + + Anonymous.introduceYourself(); + //System.out.println("I am a person! My name is " + Anonymous.getName() + " I am " + Anonymous.getage() + " Old"); + + } + + +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java new file mode 100644 index 0000000..94f5a2a --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java @@ -0,0 +1,51 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Person { + //public String name; + //public int Age; + private String name; + private int age; + + public static final double PI = 3.14; + + public static String nationality = "Bulgarian."; + + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + public int getage() { + return age; + } + + public void setAge(int age) { + this.age = age; + } + + public Person(String name, int age){ + this.name = name; + this.age = age; + } + + public Person(){ + this("Anonymous", 22); + + } + + public void introduceYourself() + { + System.out.println("I am a person! My name is " + name + " I am " + age + " Old " + "and I am " + nationality); + } +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java new file mode 100644 index 0000000..d8845c1 --- /dev/null +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java @@ -0,0 +1,51 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package oop1_myworld; + +/** + * + * @author THE NET + */ +public class Student extends Person{ + + private String fNumber; + + public String getfNumber() { + return fNumber; + } + + public void setfNumber(String fNumber) { + this.fNumber = fNumber; + } + + public Student(String fNumber, String name, int age) { + super(name, age); + this.fNumber = fNumber; + } + + public Student() { + this("Test",45); + fNumber = "No facult number"; + } + + public Student(String name,int age) { + super(name,age); + + } + @Override + public void introduceYourself(){ + super.introduceYourself(); + System.out.println("I am a student. My name is: " + name + " and My fNumber is = " + fNumber); + } + + @Override + public String toString(){ + return "Student{"+ "fNumber=" + fNumber + '}'; + } +} + + + diff --git a/1401417015 AngelFlag/project1_1/build.xml b/1401417015 AngelFlag/project1_1/build.xml new file mode 100644 index 0000000..bf7291a --- /dev/null +++ b/1401417015 AngelFlag/project1_1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project1_1. + + + diff --git a/1401417015 AngelFlag/project1_1/manifest.mf b/1401417015 AngelFlag/project1_1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/project1_1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java b/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java new file mode 100644 index 0000000..7ae567e --- /dev/null +++ b/1401417015 AngelFlag/project1_1/src/project1_1/Project1_1.java @@ -0,0 +1,49 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project1_1; +import java.util.Random; + +//б) произведението на ненулевите нечетни елементи; +/** + * + * @author THE NET + */ +public class Project1_1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + + int arr[] = new int[6]; + + int multiplied = 1;//инициализираме сума, която ти трябва за формулата; + + for (int i = 0; i < arr.length; i++ ) { + + arr[i] = generate(); + System.out.println(arr[i]); + + // тук изваждаме всички нечетни числа, които получаваме, когато разделим на две и имаме остатък едно! + //различно от нула. + + if(arr[i]%2 != 0 && arr[i] != 0){ + multiplied = multiplied * arr[i]; + + } + + } + System.out.println("Произведението на всички нечетни числа различни от нула e: " + multiplied); + } + + private static int generate() { + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; + + } + +} diff --git a/1401417015 AngelFlag/project1_sra/build.xml b/1401417015 AngelFlag/project1_sra/build.xml new file mode 100644 index 0000000..8815b45 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project1_sra. + + + diff --git a/1401417015 AngelFlag/project1_sra/manifest.mf b/1401417015 AngelFlag/project1_sra/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java new file mode 100644 index 0000000..05b9011 --- /dev/null +++ b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java @@ -0,0 +1,61 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package project1_sra; +import java.util.Random; +/** + * + * @author THE NET + */ +public class Project1_sra { + + /** + * @param args the command line arguments + */ + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = generate(); + + public static void main(String[] args) { + + int[] arr = new int[7]; + //public static int arr[] = {}; +// arr[0] = generate(); +// arr[1] = generate(); +// arr[2] = ge + double br = 0; + double sum = 0; + + for (int i = 0; i < arr.length; i++ ) { + + arr[i] = generate(); + System.out.println(arr[i]); + + if(arr[i]%5 == 0){ + + sum = sum + arr[i]; + System.out.println("Няма остатък: " + arr[i]); + + br = br + 1; + } + } + System.out.println("Сумата на елементите е : " + sum + " и броят им е : " + br); + calc(sum, br); + + } + + private static int generate() { + Random rand = new Random(); + int n = rand.nextInt(201); + return n-100; +} + + public static void calc(double sum, double br){ + + double result = sum / br; + System.out.println("средно аритметично на елементите, които се делят на 5 без остатък е: " + result); + } +} diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/build.xml b/1401417015 AngelFlag/project2_arrayS#@rT/build.xml new file mode 100644 index 0000000..319b818 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project project2_arrayS#@rT. + + + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf b/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java b/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java new file mode 100644 index 0000000..3dbd28b --- /dev/null +++ b/1401417015 AngelFlag/project2_arrayS#@rT/src/project2_arrays/rt/Project2_arraySRT.java @@ -0,0 +1,164 @@ +package project2_arrays.rt; + +import java.util.Scanner; + +//Задача 4. Елементите на масив са имена на населени места, +//започващи с главна буква. Да се съставят ППГ за: +//а) въвеждане на елементите на масива (не повече от 50). +//ж) извеждане на екрана на всички населени места, в чиито имена буквата +//"е" или "Е" се среща 2, 3 или 4 пъти, а буквата "р" не се среща нито веднъж; + +public class Project2_arraySRT { + + + static int br = 0; + static String array [] = new String[50]; + static Scanner keyboard = new Scanner(System.in, "windows-1251"); + + public static void main(String[] args) { + + menu(); + } + + public static void menu() { + + System.out.println("Меню"); // Извеждане на менюто в конзолата + System.out.println(" 1. Въвеждане на градове от конзола"); + System.out.println(" 2. Въвеждане на градове от задание"); + System.out.println(" 3. Принти масива"); + System.out.println(" 4. Особената част!"); + System.out.println(" 5. Изход"); + System.out.print("Изберете възможност (1-5): "); + + //int myChoice = keyboard.nextInt(); + + //String Text; + switch(keyboard.nextLine()){ + + case "1": + System.out.println("Вие избрахте 1: Въвеждане на градове от конзола"); + input(); + menu(); + + break; + + case "2": + System.out.println("Вие избрахте 2: Въвеждане на градове от задание"); + autoArray(); + menu(); + break; + + case "3": + System.out.println("Вие избрахте 3 да принтирате масива"); + printAll(); + menu(); + break; + + case "4": + System.out.println("Вие избрахте да принтирате Особена част"); + printSpecial(); + menu(); + + break; + + case "5": + System.out.println("Изход - Довиждане"); + //menu(); + break; + + default: + System.out.println("Въвели сте грешен избор!"); + menu(); + break; + + } + + //Keyboard.close(); + + } + //int[] array = new int[50];//tova mi e za dvata masiva! + + + public static void input(){ + + System.out.print("Напишете град: "); + + for (int i = br ; i < array.length; i++) { + array[i] = keyboard.nextLine(); + break; + } + br++; + } + + public static String autoTowns(){ + + String[] towns = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", + "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", + "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", + "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", + "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", + "Перник", "Албена", "Златни пясъци", "Константин и Елена", + "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", + "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", + "Сопот", "Калофер", "Харманли", "Градешница", "Пловидв" }; + br++; + return towns[br]; + + } + + public static void autoArray(){ + + System.out.println("Избрани градове!"); + + for (int i = 0; i < array.length; i++){ + + array[i] = autoTowns(); + + } + br = array.length; + + + } + + public static void printAll(){ + + System.out.println("Избраните градове сa: " + array[0]); + + for(int i = 0; i < array.length; i++) { + + if (array[i] == null) { + break; + } + + System.out.println(array[i]); + + } + +// for(String elements : array) { +// System.out.println(elements); +// } + + } +// + public static void printSpecial(){ + System.out.println("->Градовете,в чиито имена буквата \"е\" или \"Е\" се " + + "среща 2, 3 или 4 пъти, а буквата \"р\" не се среща нито веднъж: \n"); + + int non=0; + + for(int i=0; i1 && br<5 && (array[i].indexOf('р') == -1)) + {System.out.print(" " + array[i] + "; \n"); non++;} + } + if(0 == non) System.out.println("\nНяма такива!!!!"); + } + } + + //public static String[] m = new String[]{"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; + +//} + + diff --git a/1401417015 AngelFlag/projecteasygo/build.xml b/1401417015 AngelFlag/projecteasygo/build.xml new file mode 100644 index 0000000..d61e70a --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project projecteasygo. + + + diff --git a/1401417015 AngelFlag/projecteasygo/manifest.mf b/1401417015 AngelFlag/projecteasygo/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java b/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java new file mode 100644 index 0000000..7f9ac2d --- /dev/null +++ b/1401417015 AngelFlag/projecteasygo/src/projecteasygo/Projecteasygo.java @@ -0,0 +1,38 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package projecteasygo; + +/** + * + * @author THE NET + */ +public class Projecteasygo { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + //String imena[] = new String[50]; + String[] imena = {"Пловдив", "Бургас", "Боровец", "Варна","София", "Велико Търново", "Стара Загора", "Ивайловград", "Крумовград","Долен Чифлик", "Хасково", "Долно Калугерово", "Разград", "Пещера","Плевен", "Русе","Монтана", "Силистра", "Сливен", "Смолян", "Търговище", "Шумен","Ямбол", "Благоевград", "Видин", "Враца", "Габрово", "Добрич", "Кърджали","Кюстендил", "Ловеч", "Пазарджик", "Перник", "Албена", "Златни пясъци", "Константин и Елена", "Лозенец", "Царево", "Слънчев бряг","Пампорово", "Каварна", "Несебър", "Ахтопол", "Черноморец", "Китен", "Карлово","Асеновград", "Сопот", "Калофер", "Харманли", "Градешница" }; + + + //String[] array = new String[50]; + + низовеЗапочващиС(imena, "и"); + + System.out.println(imena); + } + public static void низовеЗапочващиС(String m[], String search){ + System.out.println("Низове започващи с " + search + ":"); + + for(int i=0; i + + + + + + + + + + Builds, tests, and runs the project test. + + + diff --git a/1401417015 AngelFlag/test/manifest.mf b/1401417015 AngelFlag/test/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/test/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/test/src/test/Test.java b/1401417015 AngelFlag/test/src/test/Test.java new file mode 100644 index 0000000..53d89a4 --- /dev/null +++ b/1401417015 AngelFlag/test/src/test/Test.java @@ -0,0 +1,364 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package test; + +import java.io.IOException; +import java.util.*; + +/** + * + * @author fmi + */ +public class Test { + + /** + * @param args the command line arguments + * @throws java.io.IOException + */ + public static void main(String[] args) throws IOException{ + + // TODO code application logic here + byte myByte = 22; + short myShort = 257; + int myInt = -123; + long myLong = 123L; // 077 0x077 + + float myFloat = 2.34F; + double myDouble = 2.34; // + + char myChar = 'c'; //'\u0000' + boolean myBoolean = false; // true + + // -------------------- Referent ----- + String myName = "Stoyan\\ "; // \n + Object myOtherByte = 3; + + System.out.print(myName); + System.out.println(myName); + + // int ch; + // 1. + // ch = System.in.read(); + // System.out.print((char) ch); + + // while ((ch = System.in.read()) != '\n') { + // System.out.print((char) ch); + // } + + // 2. + Scanner input = new Scanner(System.in); + System.out.print("Please enter your first name: "); + String firstName = input.nextLine(); + System.out.println(firstName); + + double number1 = 3.14; + double number2 = 2.71; + + System.out.println(number1 + number2); + + System.out.printf("%.3f \n", number1 + number2); + +// Old way for reading symbols +// BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); +// String firstString = br.readLine(); +// String lastString = br.readLine(); +// System.out.printf("Hello, %s %s!\n", firstString, lastString); + + + + for(int i = 0; i < 10; i++) + { + for (int j = 0; j < i; j ++) + { + System.out.print('*'); + } + System.out.print("\n"); + } + + Operations(2.32, 45.6); + + // Excersise 2 + // ############################################## 2 ################################### + // 1. Type conversions + long minNumber = 1; + long maxNumber = 1000000; + + // Generates a random number between 1 and 1000000 + long uniqueID = minNumber + (long)(Math.random() * ((maxNumber - minNumber) + 1)); + + // You can cast from one primitive value into another by putting what you want between ( ) + // (byte) (short) (long) (double) + // (float), (boolean) & (char) don't work. + // (char) stays as a number instead of a character + + // You convert from a primitive to a string like this + String stringNumber = Long.toString(maxNumber); + + // Byte.toString(bigByte); Short.toString(bigShort); Integer.toString(bigInt); + // Float.toString(bigFloat); Double.toString(bigDouble); Boolean.toString(trueOrFalse); + + // You convert from a String to a primitive like this + int numberString = Integer.parseInt(stringNumber); + + // parseShort, parseLong, parseByte, parseFloat, parseDouble, parseBoolean + + System.out.println("Unique ID set to: " + uniqueID); + + + // 2) If + String name = ""; + + // userInput.hasNextLine() returns true if a String was entered in the keyboard + if(input.hasNextLine()){ + + // userInput.nextLine() returns the value that was entered at the keyboard + System.out.print("Enter your family name; \n"); + name = input.nextLine(); + + // hasNextInt, hasNextFloat, hasNextDouble, hasNextBoolean, hasNextByte, + // hasNextLong, nextInt, nextDouble, nextFloat, nextBoolean, etc. + + } + + System.out.printf("%s \n", name); + + // 3. if-else + int randomNumber = (int) (Math.random() * 126) + 1; + + char favoriteChar = (char) randomNumber; + + // if then else statement + // > < == != >= <= + if(randomNumber == 32){ + + System.out.println("Favorite character set to: Space"); + + } else if(randomNumber == 10){ + + System.out.println("Favorite character set to: New Line"); + + } else { + + System.out.println("Favorite character set to: " + favoriteChar); + + } + + + // Logical operators + // ! Logical operators : Converts the boolean value to its right to its opposite form ie. true to false + // & : Returns true if boolean value on the right and left are both true (Always evaluates both boolean values) + // && : Returns true if boolean value on the right and left are both true (Stops evaluating after first false) + // | : Returns true if either boolean value on the right or left are true (Always evaluates both boolean values) + // || : Returns true if either boolean value on the right or left are true (Stops evaluating after first true) + // ^ : Returns true if there is 1 true and 1 false boolean value on the right or left + + if((randomNumber > 97) && (randomNumber < 122)){ + + System.out.println("Favorite character is a lowercase letter"); + + } + + if(((randomNumber > 97) && (randomNumber < 122)) || ((randomNumber > 64) && (randomNumber < 91))){ + + System.out.println("Favorite character is a letter"); + + } + + if(!false){ + + System.out.println("I turned false to " + !false); + + } + + // The ternary operator assigns one or another value based on a condition + int whichIsBigger = (50 > randomNumber) ? 50 : randomNumber; + + System.out.println("The biggest number is " + whichIsBigger); + + + // 4. switch + // The switch statement is great for when you have a limited number of values + // and the values are int, byte, or char unless you have Java 7 which allows Strings + switch(randomNumber){ + + case 8 : + System.out.println("Favorite character set to: Backspace"); + break; + + case 9 : + System.out.println("Favorite character set to: Horizontal Tab"); + break; + + case 10 : + case 11 : + case 12 : + System.out.println("Favorite character set to: Something else weird"); + break; + + default : + System.out.println("Favorite character set to: " + favoriteChar); + break; + + } + + + // 5. loops + // System.out.println(1); + // System.out.println(2); + // System.out.println(3); + + // 5.1 while + int i = 1; + while(i < (maxNumber / 2000)){ + + System.out.println(i); + i++; + + // This isn't needed, but if you want to jump out of a loop use break + if(i == (maxNumber/20000)) break; + } + + // 5.2 do - while + int number = 50; + // Do while loops are used when you want to execute the code in the braces at least once + do { + + System.out.println("Guess my number up to 100"); + + // If what they entered isn't a number send a warning + while(!input.hasNextInt()){ + + String numberEntered = input.next(); + System.out.printf("%s is not a number\n", numberEntered); + + } + number = input.nextInt(); + + }while(number != 50); + + System.out.println("Yes the number was 50"); + + + // 5.3 for + for(int i1 = 0; i1 <= 100; i1++){ + + // continue is used to skip 1 iteration of the loop + if(i1 == 90) continue; + + System.out.println(i1); + + } + // 5.4 + int[] numbers = {2, 3, 5, 7, 11, 13, 17, 19}; + for (int i2 : numbers){ + System.out.println(i2); + } + + // An array is a fixed series of boxes that contain multiple values of the same data type + // How you create arrays + // int[] favoriteNumbers; + // favoriteNumbers = new int[20]; + + int[] favoriteNumbers1 = new int[20]; + + favoriteNumbers1[0] = 100; + + String[] stringArray = {"Random", "Words", "Here"}; + + // for(dataType[] varForRow : arrayName) + for(String word : stringArray) + { + System.out.println(word); + } + + // This is a multidimensional array + String[][][] arrayName = { + { + { "000", "001" }, + { "100", "011" }, + { "200", "021" }, + { "300", "031" } + }, + { + { "010", "101" }, + { "110", "111" }, + { "210", "121" }, + { "310", "131" } + }, + { + { "020", "201" }, + { "120", "211" }, + { "220", "221" }, + { "320", "231" } + } + }; + System.out.println(arrayName[2][3][1]); + /* + for(int i = 0; i < arrayName.length; i++) + { + for(int j = 0; j < arrayName[i].length; j++) + { + + for(int k = 0; k < arrayName[i][j].length; k++) + { + System.out.print("| " + arrayName[i][j][k] + " "); + + } + } + + System.out.println("|"); + + } + */ + // You can copy an array (stringToCopy, indexes to copy) + String[] cloneOfArray = Arrays.copyOf(stringArray, 3); + + // You can print out the whole array + System.out.println(Arrays.toString(cloneOfArray)); + + // Returns the index or a negative number + System.out.println(Arrays.binarySearch(cloneOfArray, "Random")); + + + + } + + static void Operations(double par1, double par2) + { + System.out.printf("%.2f + %.2f = %.2f", par1, par2, par1 + par2); + + } + +} + +/* +import java.util.*; +public class ReadingStringsNewStyle { +public static void main(String[] args) { +Scanner input = new Scanner(System.in); +System.out.print("Please enter your first name: "); +String firstName = input.nextLine(); +System.out.print("Please enter your last name: "); +String lastName = input.nextLine(); +System.out.printf("Hello, %s %s!\n", firstName, lastName); +// input.close(); - Don't close Scanner reading System.in! +} +} +*/ +/** + * + * @author THE NET + */ + //public class Test { + + /** + * @param args the command line arguments + */ + //public static void main(String[] args) { + // TODO code application logic here + // } + +//} diff --git a/1401417015 AngelFlag/tutorial/build.xml b/1401417015 AngelFlag/tutorial/build.xml new file mode 100644 index 0000000..df477d4 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project tutorial. + + + diff --git a/1401417015 AngelFlag/tutorial/manifest.mf b/1401417015 AngelFlag/tutorial/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java b/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java new file mode 100644 index 0000000..49546c4 --- /dev/null +++ b/1401417015 AngelFlag/tutorial/src/tutorial/Tutorial.java @@ -0,0 +1,61 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package tutorial; + +/** + * + * @author THE NET + */ +public class Tutorial { + + //static String randomString = "String to Print"; + //static final Double PINUM = 3.141529; + int integerOne =22; + int integerTwo = integerOne + 1; + + public static void main(String[] args) { + //int integerOne =22; + // int integerTwo = integerOne + 1; + + //System.out.println(integerTwo); + byte bigByte = 127; + short bigShort = 32767; + int bigInt = 2100000000; + long bigLong = 9220000000000000000L; + float bigFloat = 3.14F; + double bigDouble = 3.148237948727347923748; + System.out.println(Double.MAX_VALUE); + System.out.println(Float.MAX_VALUE); + + boolean trueOrFalse = true; + + char randomChar = 66; + char anotherChar = 'A'; + + char escapedChars = '\\'; + + String randomString = "I am a random String"; + String anotherString = "Stuff"; + + String andAnotherString = randomString + " " + anotherString; + + String byteString = Byte.toString(bigByte); + String shortString = Short.toString(bigByte); + String intString = Integer.toString(bigByte); + String longString = Long.toString(bigByte); + String floatString = Float.toString(bigByte); + String doubleString = Double.toString(bigByte); + String booleanString = Boolean.toString(true); + + double aDoubleValue = 3.14546466464; + int doubleToInt = (int) aDoubleValue; + + System.out.println(randomChar); + System.out.println(andAnotherString); + System.out.println(doubleToInt); + } + +} diff --git a/1401417015 AngelFlag/upr1zad2intI=5/build.xml b/1401417015 AngelFlag/upr1zad2intI=5/build.xml new file mode 100644 index 0000000..b0a50c8 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project upr1zad2intI=5. + + + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java new file mode 100644 index 0000000..45a2d8a --- /dev/null +++ b/1401417015 AngelFlag/upr1zad2intI=5/src/upr1zad2inti/pkg5/Upr1zad2intI5.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr1zad2inti.pkg5; + +/** + * + * @author THE NET + */ +public class Upr1zad2intI5 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + int i = 2; + i = i + 19; + System.out.println(i); + } +} diff --git a/1401417015 AngelFlag/upr5_2/build.xml b/1401417015 AngelFlag/upr5_2/build.xml new file mode 100644 index 0000000..a989077 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project upr5_2. + + + diff --git a/1401417015 AngelFlag/upr5_2/manifest.mf b/1401417015 AngelFlag/upr5_2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java new file mode 100644 index 0000000..92ed371 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/src/upr5_2/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr5_2; + +/** + * + * @author THE NET + */ +class Person { + +} diff --git a/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java b/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java new file mode 100644 index 0000000..57e7fe1 --- /dev/null +++ b/1401417015 AngelFlag/upr5_2/src/upr5_2/Upr5_2.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package upr5_2; + +/** + * + * @author THE NET + */ +public class Upr5_2 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} From 33819879b2f680c6dae4d9c0e5f5441b5cfd6488 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Thu, 15 Jan 2015 13:34:52 +0200 Subject: [PATCH 36/41] Darek Course on the move --- 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 33 ++- 1401417015 AngelFlag/Calculator!/build.xml | 73 ++++++ 1401417015 AngelFlag/Darek8/build.xml | 73 ++++++ 1401417015 AngelFlag/Darek8/manifest.mf | 3 + .../Darek8/src/darek8/Darek8.java | 106 ++++++++ 1401417015 AngelFlag/Darek9Arrays/build.xml | 73 ++++++ 1401417015 AngelFlag/Darek9Arrays/manifest.mf | 3 + .../src/darek9arrays/Darek9Arrays.java | 234 ++++++++++++++++++ 1401417015 AngelFlag/darek2/build.xml | 73 ++++++ 1401417015 AngelFlag/darek2/manifest.mf | 3 + .../darek2/src/darek2/Darek2.java | 32 +++ 1401417015 AngelFlag/darek3/build.xml | 73 ++++++ 1401417015 AngelFlag/darek3/manifest.mf | 3 + .../darek3/src/darek3/Darek3.java | 40 +++ 1401417015 AngelFlag/darek4/build.xml | 73 ++++++ 1401417015 AngelFlag/darek4/manifest.mf | 3 + .../darek4/src/darek4/Darek4.java | 51 ++++ 1401417015 AngelFlag/darek7/build.xml | 73 ++++++ 1401417015 AngelFlag/darek7/manifest.mf | 3 + .../darek7/src/darek6/Darek7Monster.java | 71 ++++++ .../darek7/src/darek6/Monster1.java | 23 ++ .../src/exam1stoyan/Exam1Stoyan.java | 13 +- .../exam4_2/src/exam4_2/Exam4_2.java | 2 +- .../exam4_3/src/exam4_3/Exam4_3.java | 2 +- .../src/izpitnazadacha/IzpitnaZadacha.java | 1 - .../build.xml | 73 ++++++ .../manifest.mf | 3 + .../Listener.java | 18 ++ .../MyEventHandler.java | 14 ++ .../Nestedlocalanonymouslambdaevents.java | 36 +++ .../Notifier.java | 24 ++ .../src/project1_sra/Project1_sra.java | 2 +- 32 files changed, 1285 insertions(+), 22 deletions(-) create mode 100644 1401417015 AngelFlag/Calculator!/build.xml create mode 100644 1401417015 AngelFlag/Darek8/build.xml create mode 100644 1401417015 AngelFlag/Darek8/manifest.mf create mode 100644 1401417015 AngelFlag/Darek8/src/darek8/Darek8.java create mode 100644 1401417015 AngelFlag/Darek9Arrays/build.xml create mode 100644 1401417015 AngelFlag/Darek9Arrays/manifest.mf create mode 100644 1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java create mode 100644 1401417015 AngelFlag/darek2/build.xml create mode 100644 1401417015 AngelFlag/darek2/manifest.mf create mode 100644 1401417015 AngelFlag/darek2/src/darek2/Darek2.java create mode 100644 1401417015 AngelFlag/darek3/build.xml create mode 100644 1401417015 AngelFlag/darek3/manifest.mf create mode 100644 1401417015 AngelFlag/darek3/src/darek3/Darek3.java create mode 100644 1401417015 AngelFlag/darek4/build.xml create mode 100644 1401417015 AngelFlag/darek4/manifest.mf create mode 100644 1401417015 AngelFlag/darek4/src/darek4/Darek4.java create mode 100644 1401417015 AngelFlag/darek7/build.xml create mode 100644 1401417015 AngelFlag/darek7/manifest.mf create mode 100644 1401417015 AngelFlag/darek7/src/darek6/Darek7Monster.java create mode 100644 1401417015 AngelFlag/darek7/src/darek6/Monster1.java create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/build.xml create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/manifest.mf create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Listener.java create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/MyEventHandler.java create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Nestedlocalanonymouslambdaevents.java create mode 100644 1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Notifier.java diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java index c7c9088..c3bd0f3 100644 --- a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -13,11 +13,28 @@ public class Main { * @param args the command line arguments */ public static void main(String[] args) { - int i=1; - while(i<15) - { - System.out.println(i); - i= i+1; -// TODO code application logic here - } -} + + int zdravei= 1; + String zdrastiKak = "zdraveee"; + String alyori = Integer.toString(zdravei); + System.out.println(zdravei); + zdrastiKak+=alyori; + System.out.println(zdrastiKak); + } +// int i=0; +// while(i<=5) +// { +// System.out.println(i); +// i= i+1; +//// TODO code application logic here +// } +// +// int a=0; +// do{ +// System.out.println(a++); +// } +// while(a<=5); +//} +//} +// +// diff --git a/1401417015 AngelFlag/Calculator!/build.xml b/1401417015 AngelFlag/Calculator!/build.xml new file mode 100644 index 0000000..8ddfad5 --- /dev/null +++ b/1401417015 AngelFlag/Calculator!/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Calculator!. + + + diff --git a/1401417015 AngelFlag/Darek8/build.xml b/1401417015 AngelFlag/Darek8/build.xml new file mode 100644 index 0000000..24872ae --- /dev/null +++ b/1401417015 AngelFlag/Darek8/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Darek8. + + + diff --git a/1401417015 AngelFlag/Darek8/manifest.mf b/1401417015 AngelFlag/Darek8/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Darek8/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Darek8/src/darek8/Darek8.java b/1401417015 AngelFlag/Darek8/src/darek8/Darek8.java new file mode 100644 index 0000000..ede816d --- /dev/null +++ b/1401417015 AngelFlag/Darek8/src/darek8/Darek8.java @@ -0,0 +1,106 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek8; + +import java.util.Arrays; + +public class Darek8 { + + static char[][] battleBoard = new char[10][10]; + + public static void buildBattleBoard(){ + + for(char[] row : battleBoard) + { + Arrays.fill(row, '*'); + } + } + + public static void redrawBoard() + { + int k=1; + while(k<=30){System.out.println('-'); k++;} + System.out.println(); + + for + (int i = 0; i < battleBoard.length; i++) + { + for (int j=0; j + + + + + + + + + + Builds, tests, and runs the project Darek9Arrays. + + + diff --git a/1401417015 AngelFlag/Darek9Arrays/manifest.mf b/1401417015 AngelFlag/Darek9Arrays/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Darek9Arrays/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java b/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java new file mode 100644 index 0000000..94c8f42 --- /dev/null +++ b/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java @@ -0,0 +1,234 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek9arrays; + + + import java.util.Arrays; +/** + * + * @author THE NET + */ + public class Darek9Arrays { + + +// An array is a variable that can hold a bunch of values +// Think of an array as a big box filled with other boxes +// Each box has a number on it called an index that you use +// to access its specific value +/* Array Rules + * An array can contain only values of the same type + * An arrays size can't be changed once it is set + * An array is an object + */ +// You declare an array with the dataType[] arrayName + int[] randomArray; +// You create an array with +// dataType[] arrayName = new dataType[sizeOfArray]; + int[] numberArray = new int[10]; +// You can add values to the array in many ways + // Individually +// Most create array and define size first + + randomArray = new int[20]; + randomArray[1] = 2; + // You can also create the array and its values from the start + String[] stringArray = {"Just", "Random", "Words"}; + + // You can add values with a loop // arrayName.length returns the number of elements in the array +038 for(int i = 0; i < numberArray.length; i++) +039 { +040 +041 numberArray[i] = i; +042 +043 } +044 +045 // Draws 41 lines on the screen +046 int k = 1; +047 while(k <= 41){ System.out.print('-'); k++; } +048 System.out.println(); +049 +050 // Cycles through all of the boxes in the array and prints them +051 for(int j = 0; j < numberArray.length; j++) +052 { +053 System.out.print("| " + j + " "); +054 } +055 System.out.println("|"); +056 +057 // Draws 41 lines on the screen +058 k = 1; +059 while(k <= 41){ System.out.print('-'); k++; } +060 System.out.println(); +061 +062 // Multidimensional Array +063 // To but arrays in an array just add another [] +064 +065 String[][] multiDArray = new String[10][10]; +066 +067 // Adding values to a multidimensional array +068 +069 for(int i = 0; i < multiDArray.length; i++) +070 { +071 +072 // To get the length for the array in the array you must follow it +073 // with brackets with the index between them like [i] +074 +075 for(int j = 0; j < multiDArray[i].length; j++) +076 { +077 +078 multiDArray[i][j] = i + " " + j; +079 +080 } +081 +082 } +083 +084 // Draws 61 lines on the screen +085 k = 1; +086 while(k <= 61){ System.out.print('-'); k++; } +087 System.out.println(); +088 +089 // Prints out a multidimensional array with the values being the indexes +090 +091 for(int i = 0; i < multiDArray.length; i++) +092 { +093 +094 for(int j = 0; j < multiDArray[i].length; j++) +095 { +096 +097 System.out.print("| " + multiDArray[i][j] + " "); +098 +099 } +100 System.out.println("|"); +101 +102 } +103 +104 // Draws 61 lines on the screen +105 k = 1; +106 while(k <= 61){ System.out.print('-'); k++; } +107 System.out.println(); +108 +109 // You can use the enhanced for loop to print out array values +110 // for(itemDataType tempVariable : arrayName) +111 +112 for(int row : numberArray) +113 { +114 System.out.print(row); +115 } +116 System.out.println("\n"); +117 +118 // To use enhanced for for a multidimensional array you follow this formula +119 // for(dataType[] varForRow : arrayName) +120 +121 for(String[] rows : multiDArray) +122 { +123 // for(elementDataType varForColumn : varForRow) +124 for(String column : rows) +125 { +126 System.out.print("| " + column + " "); +127 } +128 System.out.println("|"); +129 } +130 +131 // You can copy an array in a couple of ways +132 // Arrays.copyOf(arrayToCopy, numberToCopyFromBeginning); +133 +134 int[] numberCopy = Arrays.copyOf(numberArray, 5); +135 for(int num : numberCopy) +136 { +137 System.out.print(num); +138 } +139 System.out.println("\n"); +140 +141 // You can copy an array from one index to another with copyOfRange +142 // int[] numberCopy = Arrays.copyOf(numberArray, 1, 5); +143 +144 // You can print out the whole array with toString +145 System.out.println(Arrays.toString(numberCopy)); +146 +147 +148 // Do define a default value for an array use fill +149 // Arrays.fill(arrayName, valueToFill); +150 // valueToFill must be the same for each element in the array +151 +152 int[] moreNumbers = new int[100]; +153 Arrays.fill(moreNumbers, 2); +154 +155 // Filling a multidimensional array +156 char[][] boardGame = new char[10][10]; +157 for(char[] row : boardGame) +158 { +159 Arrays.fill(row, '*'); +160 } +161 +162 // You can sort an array using sort() +163 int[] numsToSort = new int[10]; +164 +165 // Generate array full of random numbers +166 for(int i = 0; i < 10; i++) +167 { +168 numsToSort[i] = (int) (Math.random() * 100); +169 } +170 +171 // Sort the array in ascending order +172 Arrays.sort(numsToSort); +173 +174 System.out.println(Arrays.toString(numsToSort)); +175 +176 // binarySearch returns the index for the searched for value +177 // If it doesn't find it it returns a negative number +178 +179 int whereIs50 = Arrays.binarySearch(numsToSort, 50); +180 +181 System.out.println(whereIs50); +182 } +183 +184 } +- See more at: http://www.newthinktank.com/2012/01/java-video-tutorial-9/#sthash.uHpEp6XK.dpuf +// public static void main(String[] args) { +// +// int[] randomArray; +// +// int[] numberArray = new int[10]; +// +// randomArray = new int[20]; +// randomArray[1] = 2; +// +// String[] stringArray = {"just", "random", "words"}; +// +// for(int i = 0; i < numberArray.length; i++) +// { +// numberArray[i] = i; +// } +// +// int k = 1; +// while (k <= 41) +// {System.out.println("-"); k++;} +// System.out.println(); +// +// for(int j =0; j + + + + + + + + + + Builds, tests, and runs the project darek2. + + + diff --git a/1401417015 AngelFlag/darek2/manifest.mf b/1401417015 AngelFlag/darek2/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darek2/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darek2/src/darek2/Darek2.java b/1401417015 AngelFlag/darek2/src/darek2/Darek2.java new file mode 100644 index 0000000..f5b91fb --- /dev/null +++ b/1401417015 AngelFlag/darek2/src/darek2/Darek2.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek2; + +import java.util.Scanner; + +public class Darek2 { + + static Scanner userInput = new Scanner(System.in); + + public static void main(String[] args) { + System.out.println("Your favorite number: "); + + if(userInput.hasNextInt()){ + + int numberEntered = userInput.nextInt(); + + System.out.println("you entered: " + numberEntered); + + int numberEntered2 = numberEntered + numberEntered; + System.out.println(numberEntered + "+" + numberEntered + "=" + numberEntered2); + + } + else { + System.out.println("Enter an integer next time"); + + } + } + } diff --git a/1401417015 AngelFlag/darek3/build.xml b/1401417015 AngelFlag/darek3/build.xml new file mode 100644 index 0000000..42f8980 --- /dev/null +++ b/1401417015 AngelFlag/darek3/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project darek3. + + + diff --git a/1401417015 AngelFlag/darek3/manifest.mf b/1401417015 AngelFlag/darek3/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darek3/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darek3/src/darek3/Darek3.java b/1401417015 AngelFlag/darek3/src/darek3/Darek3.java new file mode 100644 index 0000000..7005409 --- /dev/null +++ b/1401417015 AngelFlag/darek3/src/darek3/Darek3.java @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek3; + + + public class Darek3 { + + public static void main(String[] args) { + + int randomNumber = (int)(Math.random() * 50); + + if (randomNumber < 25){ + System.out.println("The randomNumber is less than 25"); + } + + else if (randomNumber > 40){ + System.out.println("The randomNumber is bigger than 40"); + } + + else if (randomNumber == 18){ + System.out.println("The randomNumber is equal to 18"); + } + + else if (randomNumber != 40){ + System.out.println("The randomNumber is not equal to 40"); + } + + else if (randomNumber > 40){ + System.out.println("The randomNumber is bigger than 40"); + } + else { + System.out.println("Nothing worked"); + } + System.out.println("The randomNumber is " + randomNumber); + } + +} diff --git a/1401417015 AngelFlag/darek4/build.xml b/1401417015 AngelFlag/darek4/build.xml new file mode 100644 index 0000000..8d1a86a --- /dev/null +++ b/1401417015 AngelFlag/darek4/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project darek4. + + + diff --git a/1401417015 AngelFlag/darek4/manifest.mf b/1401417015 AngelFlag/darek4/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darek4/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darek4/src/darek4/Darek4.java b/1401417015 AngelFlag/darek4/src/darek4/Darek4.java new file mode 100644 index 0000000..dd166ca --- /dev/null +++ b/1401417015 AngelFlag/darek4/src/darek4/Darek4.java @@ -0,0 +1,51 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek4; + +import java.util.Scanner; + +public class Darek4 { + + static Scanner userInput = new Scanner(System.in); + + public static void main(String[] args) { + int i = 0; + + while(i<=20){ + if (i==3){ + i+=2; + continue; + } + System.out.println(i); + i++; + + if((i%2)==0) + { + i++; + } + if (i>10){ + break; + } + } + m1(); + } + public static void m1(){ + + String contYorN = "Y"; + + int h = 1; + + while(contYorN.equalsIgnoreCase("y")) + { + System.out.println(h); + System.out.println("Continue Y or N?"); + contYorN = userInput.nextLine(); + h++; + + + } + } +} diff --git a/1401417015 AngelFlag/darek7/build.xml b/1401417015 AngelFlag/darek7/build.xml new file mode 100644 index 0000000..ca32dab --- /dev/null +++ b/1401417015 AngelFlag/darek7/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project darek7. + + + diff --git a/1401417015 AngelFlag/darek7/manifest.mf b/1401417015 AngelFlag/darek7/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darek7/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darek7/src/darek6/Darek7Monster.java b/1401417015 AngelFlag/darek7/src/darek6/Darek7Monster.java new file mode 100644 index 0000000..8229d4d --- /dev/null +++ b/1401417015 AngelFlag/darek7/src/darek6/Darek7Monster.java @@ -0,0 +1,71 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek6; + +public class Darek7Monster { + + public final String TOMBSTONE = "HERE LIES A DEAD MONSTER"; + + private int health = 500; + private int attack = 20; + private int movement = 2; + //private int xPosition = 0; + //private int yPosition =0; + private boolean alive = true; + + public String name = "Big monster"; + + public int getAttack(){ + return attack; + } + + public int getMovement(){ + return movement; + } + + public int getHealth(){ + return health; + } + + public void setHealth(int decreaseHealth) + { + health = health - decreaseHealth; + if(health <0) + { + alive = false; + } + } + + public void setHealth(double decrease) + { + int intDecreaseHealth = (int) decreaseHealth; + health = health - intDecreaseHealth; + if (health < 0) + { + alive = false; + } + } + + public Darek7Monster(int health, int attack, int movement) + { + this.health = newHealth; + this.attack = newAttack; + this.movement = newMovement; + + } + //default Constructor + public Darek7Monster() + { + + } + + public static void main(String[] args){ + Darek7Monster Frank = new Darek7Monster(); + + System.out.println(Frank.attack); + System.out.println(Frank.health); + } +} diff --git a/1401417015 AngelFlag/darek7/src/darek6/Monster1.java b/1401417015 AngelFlag/darek7/src/darek6/Monster1.java new file mode 100644 index 0000000..266271a --- /dev/null +++ b/1401417015 AngelFlag/darek7/src/darek6/Monster1.java @@ -0,0 +1,23 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek6; + +/** + * + * @author THE NET + */ +public class Monster1 { + + public static void main(String[] args) + { + Darek7Monster Frank = new Darek7Monster(); + + Frank.name = "Frank"; + + System.out.println(Frank.name+ " has an attack of " + Frank.getAttack()); + System.out.println(Frank.name+ "has health of " + Frank.getHealth()); + } +} diff --git a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java index 9e77dd3..d568528 100644 --- a/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java +++ b/1401417015 AngelFlag/exam1Stoyan/src/exam1stoyan/Exam1Stoyan.java @@ -5,30 +5,23 @@ */ package exam1stoyan; import java.util.Scanner; -/** - * - * @author THE NET - */ + public class Exam1Stoyan { public static Scanner input=new Scanner(System.in); - /** - * @param args the command line arguments - */ //Чрез диалог да се избере или куб, или цилиндър. Какъвто и да е изборът, чрез //един и същ програмен код да се въведат размерите на фигурата и да се изведе обемът й. //Обем на куб V \, = \, a^3 \, = \, a . a . a // //Ако прав кръгов цилиндър има височина h и радиус r, то обемът му се дава с формулата //V = \PI r^2 h, - // TODO code application logic here public static void main(String[] args) { - System.out.println("Please choose the figure 1.Cilinder, 2.Paralelepiped"); + System.out.println("Please choose the figure 1.Цилиндър, 2.Паралелепипед"); int choice = input.nextInt(); calculateable figure; if (choice == 1) figure = new Cilinder(); - else figure = new Paralelepiped();// TODO code application logic here + else figure = new Paralelepiped(); figure.readParameters(); System.out.printf("%.2f", figure.calculateV()); } diff --git a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java index 0ca613e..a7fbce4 100644 --- a/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java +++ b/1401417015 AngelFlag/exam4_2/src/exam4_2/Exam4_2.java @@ -20,7 +20,7 @@ public static void main(String[] args) { } public static void низовеЗапочващиС(String m[], String search){ - System.out.println("Елементи съдържащи 'и'" + search + ":"); + System.out.println("Елементи съдържащи 'и' " + search + ":"); for (int i=0; i + + + + + + + + + + Builds, tests, and runs the project nestedlocalanonymouslambdaevents. + + + diff --git a/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/manifest.mf b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Listener.java b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Listener.java new file mode 100644 index 0000000..e990cea --- /dev/null +++ b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Listener.java @@ -0,0 +1,18 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nestedlocalanonymouslambdaevents; + +/** + * + * @author THE NET + */ +public class Listener implements MyEventHandler { + + @Override + public void happened(Object sender){ + System.out.println("The Event was Triggered"); + } +} diff --git a/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/MyEventHandler.java b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/MyEventHandler.java new file mode 100644 index 0000000..4ec0a6e --- /dev/null +++ b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/MyEventHandler.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nestedlocalanonymouslambdaevents; + +/** + * + * @author THE NET + */ +public interface MyEventHandler { + void happened(Object sender); +} diff --git a/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Nestedlocalanonymouslambdaevents.java b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Nestedlocalanonymouslambdaevents.java new file mode 100644 index 0000000..711c42d --- /dev/null +++ b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Nestedlocalanonymouslambdaevents.java @@ -0,0 +1,36 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nestedlocalanonymouslambdaevents; + +/** + * + * @author THE NET + */ +public class Nestedlocalanonymouslambdaevents { + + /** + * @param args the command line arguments + */ + + private static class NestedListener implements MyEventHandler{ + + @Override + public void happened(Object sender) { + System.out.println("Something happend. Event handler in my nested class"); + } + + } + + + + public static void main(String[] args) { + Notifier notifier = new Notifier(); + notifier.doSomething(); + notifier.onSomething = new Listener(); + notifier.doSomething(); + } + +} diff --git a/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Notifier.java b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Notifier.java new file mode 100644 index 0000000..fb4281e --- /dev/null +++ b/1401417015 AngelFlag/nestedlocalanonymouslambdaevents/src/nestedlocalanonymouslambdaevents/Notifier.java @@ -0,0 +1,24 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package nestedlocalanonymouslambdaevents; + +/** + * + * @author THE NET + */ +public class Notifier { + + public MyEventHandler onSomething; + + public void doSomething(){ + System.out.println("Do something was called"); + if (onSomething != null) { + onSomething.happened(this); + + + } + } +} diff --git a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java index 05b9011..1e0f3f7 100644 --- a/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java +++ b/1401417015 AngelFlag/project1_sra/src/project1_sra/Project1_sra.java @@ -21,7 +21,7 @@ public class Project1_sra { public static void main(String[] args) { - int[] arr = new int[7]; + int[] arr = new int[6]; //public static int arr[] = {}; // arr[0] = generate(); // arr[1] = generate(); From 046ba7a3c245fe06e9c718365f4cffe0ac9af804 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Thu, 15 Jan 2015 15:07:21 +0200 Subject: [PATCH 37/41] course update --- 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 34 ++++----- 1401417015 AngelFlag/extend/build.xml | 73 +++++++++++++++++++ 1401417015 AngelFlag/extend/manifest.mf | 3 + .../extend/src/extend/Extend.java | 19 +++++ .../extend/src/extend/classEdno.java | 16 ++++ .../extend/src/extend/classTwo.java | 17 +++++ 6 files changed, 145 insertions(+), 17 deletions(-) create mode 100644 1401417015 AngelFlag/extend/build.xml create mode 100644 1401417015 AngelFlag/extend/manifest.mf create mode 100644 1401417015 AngelFlag/extend/src/extend/Extend.java create mode 100644 1401417015 AngelFlag/extend/src/extend/classEdno.java create mode 100644 1401417015 AngelFlag/extend/src/extend/classTwo.java diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java index c3bd0f3..66ea4ed 100644 --- a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -20,21 +20,21 @@ public static void main(String[] args) { System.out.println(zdravei); zdrastiKak+=alyori; System.out.println(zdrastiKak); - } -// int i=0; -// while(i<=5) -// { -// System.out.println(i); -// i= i+1; -//// TODO code application logic here -// } -// -// int a=0; -// do{ -// System.out.println(a++); -// } -// while(a<=5); //} -//} -// -// + int i=0; + while(i<=5) + { + System.out.println(i); + i= i+1; +// TODO code application logic here + } + + int a=0; + do{ + System.out.println(a++); + } + while(a<=5); +} +} + + diff --git a/1401417015 AngelFlag/extend/build.xml b/1401417015 AngelFlag/extend/build.xml new file mode 100644 index 0000000..68d579d --- /dev/null +++ b/1401417015 AngelFlag/extend/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project extend. + + + diff --git a/1401417015 AngelFlag/extend/manifest.mf b/1401417015 AngelFlag/extend/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/extend/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/extend/src/extend/Extend.java b/1401417015 AngelFlag/extend/src/extend/Extend.java new file mode 100644 index 0000000..8e3a558 --- /dev/null +++ b/1401417015 AngelFlag/extend/src/extend/Extend.java @@ -0,0 +1,19 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package extend; + +public class Extend { + + + public static void main(String[] args) { + classEdno B = new classEdno(); + classTwo BB = new classTwo(); + + B.classEdno(); + BB.classEdno(); + } + } + diff --git a/1401417015 AngelFlag/extend/src/extend/classEdno.java b/1401417015 AngelFlag/extend/src/extend/classEdno.java new file mode 100644 index 0000000..7f4ba20 --- /dev/null +++ b/1401417015 AngelFlag/extend/src/extend/classEdno.java @@ -0,0 +1,16 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package extend; + +/** + * + * @author THE NET + */ +public class classEdno extends classTwo{ + public void classEdno(){ + System.out.println("ClassEdno i Class dve sled malko + "); + } +} diff --git a/1401417015 AngelFlag/extend/src/extend/classTwo.java b/1401417015 AngelFlag/extend/src/extend/classTwo.java new file mode 100644 index 0000000..2c6b480 --- /dev/null +++ b/1401417015 AngelFlag/extend/src/extend/classTwo.java @@ -0,0 +1,17 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package extend; + +/** + * + * @author THE NET + */ +public class classTwo { + public void classEdno(){ + System.out.println("ClassTwo"); + } + +} From 06bd5cd71ebbe735be88aeab66d22cbeb01f9a89 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Tue, 20 Jan 2015 12:37:21 +0200 Subject: [PATCH 38/41] :+1: Darek course on the move. --- 1401417015 AngelFlag/Darek11/build.xml | 73 +++++++++++++++ 1401417015 AngelFlag/Darek11/manifest.mf | 3 + .../Darek11/src/darek11/Darek11.java | 93 +++++++++++++++++++ .../extend/src/extend/Extend.java | 4 +- .../extend/src/extend/classEdno.java | 4 +- .../extend/src/extend/classTwo.java | 2 +- 6 files changed, 174 insertions(+), 5 deletions(-) create mode 100644 1401417015 AngelFlag/Darek11/build.xml create mode 100644 1401417015 AngelFlag/Darek11/manifest.mf create mode 100644 1401417015 AngelFlag/Darek11/src/darek11/Darek11.java diff --git a/1401417015 AngelFlag/Darek11/build.xml b/1401417015 AngelFlag/Darek11/build.xml new file mode 100644 index 0000000..68f7d50 --- /dev/null +++ b/1401417015 AngelFlag/Darek11/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Darek11. + + + diff --git a/1401417015 AngelFlag/Darek11/manifest.mf b/1401417015 AngelFlag/Darek11/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Darek11/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java b/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java new file mode 100644 index 0000000..8defba3 --- /dev/null +++ b/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java @@ -0,0 +1,93 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek11; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.Arrays; + +public class Darek11 { + + public static void main(String[] args) { + ArrayList arrayListOne; + arrayListOne = new ArrayList(); + + ArrayList arrayListTwo = new ArrayList(); + + ArrayList names = new ArrayList(); + names.add("John Smith"); + names.add("Angel Ivanov"); + names.add("Oliver Miller"); + + names.add(2, "Jack Ryan"); + + names.set(0, "John Adams"); + + names.remove(3); + //names.remove(2); + + for (int i = 0; i Date: Sun, 25 Jan 2015 20:11:49 +0200 Subject: [PATCH 39/41] snd snd --- 1401417015 AngelFlag/2_1/src/pkg2_1/Main.java | 63 +- .../Darek11/src/darek11/Darek11.java | 2 +- 1401417015 AngelFlag/Darek12/build.xml | 73 +++ .../{method => Darek12}/manifest.mf | 0 .../Darek12/src/darek12/Darek12.java | 50 ++ 1401417015 AngelFlag/Darek13/build.xml | 73 +++ 1401417015 AngelFlag/Darek13/manifest.mf | 3 + .../Darek13/src/darek13/Darek13.java | 47 ++ .../{method => Enigma}/build.xml | 6 +- 1401417015 AngelFlag/Enigma/manifest.mf | 3 + .../Enigma/src/enigma/Enigma.java | 557 ++++++++++++++++++ 1401417015 AngelFlag/EnigmaMashine/build.xml | 73 +++ .../EnigmaMashine/dictionary.txt | 1 + .../EnigmaMashine/manifest.mf | 3 + .../src/enigmamashine/EnigmaMashine.java | 501 ++++++++++++++++ .../Fibonacci/src/fibonacci/Fibonacci.java | 2 +- 1401417015 AngelFlag/animals/build.xml | 6 +- 1401417015 AngelFlag/darekAnimal/build.xml | 73 +++ 1401417015 AngelFlag/darekAnimal/manifest.mf | 3 + .../darekAnimal/src/darekanimal/Animal.java | 41 ++ .../darekAnimal/src/darekanimal/Cats.java | 35 ++ .../src/darekanimal/DarekAnimal.java | 49 ++ 1401417015 AngelFlag/logic/build.xml | 73 +++ 1401417015 AngelFlag/logic/manifest.mf | 3 + .../logic/src/logic/Logic.java | 32 + .../method/src/method/Method.java | 44 -- 26 files changed, 1742 insertions(+), 74 deletions(-) create mode 100644 1401417015 AngelFlag/Darek12/build.xml rename 1401417015 AngelFlag/{method => Darek12}/manifest.mf (100%) create mode 100644 1401417015 AngelFlag/Darek12/src/darek12/Darek12.java create mode 100644 1401417015 AngelFlag/Darek13/build.xml create mode 100644 1401417015 AngelFlag/Darek13/manifest.mf create mode 100644 1401417015 AngelFlag/Darek13/src/darek13/Darek13.java rename 1401417015 AngelFlag/{method => Enigma}/build.xml (95%) create mode 100644 1401417015 AngelFlag/Enigma/manifest.mf create mode 100644 1401417015 AngelFlag/Enigma/src/enigma/Enigma.java create mode 100644 1401417015 AngelFlag/EnigmaMashine/build.xml create mode 100644 1401417015 AngelFlag/EnigmaMashine/dictionary.txt create mode 100644 1401417015 AngelFlag/EnigmaMashine/manifest.mf create mode 100644 1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java create mode 100644 1401417015 AngelFlag/darekAnimal/build.xml create mode 100644 1401417015 AngelFlag/darekAnimal/manifest.mf create mode 100644 1401417015 AngelFlag/darekAnimal/src/darekanimal/Animal.java create mode 100644 1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java create mode 100644 1401417015 AngelFlag/darekAnimal/src/darekanimal/DarekAnimal.java create mode 100644 1401417015 AngelFlag/logic/build.xml create mode 100644 1401417015 AngelFlag/logic/manifest.mf create mode 100644 1401417015 AngelFlag/logic/src/logic/Logic.java delete mode 100644 1401417015 AngelFlag/method/src/method/Method.java diff --git a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java index 66ea4ed..df769a9 100644 --- a/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java +++ b/1401417015 AngelFlag/2_1/src/pkg2_1/Main.java @@ -14,27 +14,46 @@ public class Main { */ public static void main(String[] args) { - int zdravei= 1; - String zdrastiKak = "zdraveee"; - String alyori = Integer.toString(zdravei); - System.out.println(zdravei); - zdrastiKak+=alyori; - System.out.println(zdrastiKak); -//} - int i=0; - while(i<=5) - { - System.out.println(i); - i= i+1; -// TODO code application logic here - } - - int a=0; - do{ - System.out.println(a++); - } - while(a<=5); -} + + for (int i = 1; i<10; i++){ + + System.out.println(i); + } + } } - + + +// int i = 10; +// while (i<50){ +// i = i*2; +// System.out.println(i); + +// +// for(int i=0; i<100; i++){ +// System.out.println(i); +// } + +// int zdravei= 1; +// String zdrastiKak = "zdraveee"; +// String alyori = Integer.toString(zdravei); +// System.out.println(zdravei); +// zdrastiKak+=alyori; +// System.out.println(zdrastiKak); +////} +// int i=0; +// while(i<=5) +// { +// System.out.println(i); +// i= i+1; +//// TODO code application logic here +// } +// +// int a=0; +// do{ +// System.out.println(a++); +// } +// while(a<=5); +//} +//} +// diff --git a/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java b/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java index 8defba3..e54da5d 100644 --- a/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java +++ b/1401417015 AngelFlag/Darek11/src/darek11/Darek11.java @@ -14,7 +14,7 @@ public static void main(String[] args) { ArrayList arrayListOne; arrayListOne = new ArrayList(); - ArrayList arrayListTwo = new ArrayList(); + //ArrayList arrayListTwo = new ArrayList(); ArrayList names = new ArrayList(); names.add("John Smith"); diff --git a/1401417015 AngelFlag/Darek12/build.xml b/1401417015 AngelFlag/Darek12/build.xml new file mode 100644 index 0000000..29f060a --- /dev/null +++ b/1401417015 AngelFlag/Darek12/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Darek12. + + + diff --git a/1401417015 AngelFlag/method/manifest.mf b/1401417015 AngelFlag/Darek12/manifest.mf similarity index 100% rename from 1401417015 AngelFlag/method/manifest.mf rename to 1401417015 AngelFlag/Darek12/manifest.mf diff --git a/1401417015 AngelFlag/Darek12/src/darek12/Darek12.java b/1401417015 AngelFlag/Darek12/src/darek12/Darek12.java new file mode 100644 index 0000000..2a88ea0 --- /dev/null +++ b/1401417015 AngelFlag/Darek12/src/darek12/Darek12.java @@ -0,0 +1,50 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek12; + +import java.util.Arrays; +import java.util.LinkedList; + +public class Darek12 { + + public static void main(String[] args) { + + LinkedList LinkListOne = new LinkedList(); + LinkedList names = new LinkedList(); + + names.add("Ivan Petrov"); + names.add("Angel Ivanov"); + + names.addLast("Dragan Petkanov"); + names.addFirst("Angel Bayraktarov"); + + names.add(0, "Peter Pan"); + names.set(2, "Paul Newman"); //smeni Paul Newman, vmesto Ivan Petrov + + //names.remove(2); + //names.remove("Angel Ivanov"); + System.out.println("nFirst index is " + names.get(0)); + System.out.println("nLast index is " + names.getLast()); + + LinkedList nameCopy = new LinkedList(names); + + System.out.println("Newlist nameCopy" + nameCopy); + + if(names.contains("Peter Pan")){ + System.out.println("Peter Pan is here!"); + } + System.out.println("ArrayList size is " + names.size()); + + for (String name : names){ + System.out.println(name); + } + + Object[] nameArray = new Object[5]; + nameArray = names.toArray(); + System.out.println(Arrays.toString(nameArray)); + names.clear(); + } +} diff --git a/1401417015 AngelFlag/Darek13/build.xml b/1401417015 AngelFlag/Darek13/build.xml new file mode 100644 index 0000000..d7e7de1 --- /dev/null +++ b/1401417015 AngelFlag/Darek13/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Darek13. + + + diff --git a/1401417015 AngelFlag/Darek13/manifest.mf b/1401417015 AngelFlag/Darek13/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Darek13/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java b/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java new file mode 100644 index 0000000..fee9fc3 --- /dev/null +++ b/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java @@ -0,0 +1,47 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek13; + import java.util.Arrays; + +public class Darek13 { + + + public static void main(String[] args) { + String randomString = "I am just a randomstring"; + String gotToQuote= "He said, \"I'm here\""; + + int numTwo = 2; + + System.out.println(randomString + " " + numTwo); + + String uppercaseStr = "BIG"; + String lowercaseStr = "big"; + + if(uppercaseStr.equalsIgnoreCase(lowercaseStr)){ + System.out.println("They are equal"); + } + + String letters = "abcde"; + String moreLetters = "fghijk"; + + + System.out.println("2nd char:" + letters.charAt(1)); + System.out.println(letters.compareTo(moreLetters)); + System.out.println("Letters contains abc: " + letters.contains("abc")); + System.out.println(letters.endsWith("de")); + System.out.println(letters.indexOf("bc")); + System.out.println("Letters length is " + letters.length()); + System.out.println(letters.replace("abc", "xy")); + + String[] letterArray = letters.split(""); + + System.out.println(Arrays.toString(letterArray)); + + char[] charArray = letters.toCharArray(); + System.out.println(Arrays.toString(charArray)); + } + +} diff --git a/1401417015 AngelFlag/method/build.xml b/1401417015 AngelFlag/Enigma/build.xml similarity index 95% rename from 1401417015 AngelFlag/method/build.xml rename to 1401417015 AngelFlag/Enigma/build.xml index a60832f..fd36599 100644 --- a/1401417015 AngelFlag/method/build.xml +++ b/1401417015 AngelFlag/Enigma/build.xml @@ -7,8 +7,8 @@ - - Builds, tests, and runs the project method. + + Builds, tests, and runs the project Enigma. + + + + + + + + + Builds, tests, and runs the project EnigmaMashine. + + + diff --git a/1401417015 AngelFlag/EnigmaMashine/dictionary.txt b/1401417015 AngelFlag/EnigmaMashine/dictionary.txt new file mode 100644 index 0000000..4329d71 --- /dev/null +++ b/1401417015 AngelFlag/EnigmaMashine/dictionary.txt @@ -0,0 +1 @@ +plovdiv \ No newline at end of file diff --git a/1401417015 AngelFlag/EnigmaMashine/manifest.mf b/1401417015 AngelFlag/EnigmaMashine/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/EnigmaMashine/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java b/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java new file mode 100644 index 0000000..fe70098 --- /dev/null +++ b/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java @@ -0,0 +1,501 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package enigmamashine; + + import java.util.Scanner; + import java.io.IOException; // for IOException + import java.util.ArrayList; // Used to create ArrayLists dictionary use + import java.io.*; + +public class EnigmaMashine { + + Scanner keyboard = new Scanner( System.in); + ArrayList dictionary; + + char[] innerRotor = {' ','G','N','U','A','H','O','V','B','I','P','W','C','J','Q','X','D','K','R','Y','E','L','S','Z','F','M','T'}; + char[] middleRotor = {' ','E','J','O','T','Y','C','H','M','R','W','A','F','K','P','U','Z','D','I','N','S','X','B','G','L','Q','V'}; + char[] outerRotor = {' ','B','D','F','H','J','L','N','P','R','T','V','X','Z','A','C','E','G','I','K','M','O','Q','S','U','W','Y'}; + + int[] innerRotorIndex = new int[128]; + int[] middleRotorIndex = new int[128]; + int[] outerRotorIndex = new int[128]; + + char innerRotorStartingLetter = ' '; + char middleRotorStartingLetter = ' '; + char outerRotorStartingLetter = ' '; + + int bestNumberOfDictionaryHits = 0; + String bestDecryptedString = ""; + char bestInnerRotorSetting =' '; + char bestMiddleRotorSetting =' '; + char bestOuterRotorSetting = ' '; + + + public static void main(String[] args) throws IOException { + // create an instance of this class + EnigmaMashine EnigmaInstance = new EnigmaMashine(); + // call a non-static method to do everything else + EnigmaInstance.mainLoop(); + + System.out.println("\n" + + "Exiting program...\n"); + } + + + //------------------------------------------------------------------------- + // mainLoop() - display identifying information and run main loop with menu + // The words "throws IOException" have to do with dictionary error + // handling. + // + void mainLoop() throws IOException + { + // First take care of creating and initializing the dictionary + // Define the instance of the dictionary ArrayList + dictionary = new ArrayList<>(); + // Now fill the dictionary array list with words from the dictionary file + readInDictionaryWords(); + + String cipherText = " "; // stores user Input in main loop + char[] cipherTextArray; // starts with the cipherText; Eventually will store the decrypted text + + // Display identifying information + System.out.println( "Author: Dale Reed \n" + + "Class: CS 107, Spring 2009 \n" + + "Program #5: Enigma \n" + + "TA: Billie Joe Armstrong, T 6:00 AM \n" + + "April 12, 2009\n"); + + // Prompt for input to be used + System.out.println("Choose from the following options:"); + System.out.println(" 1. Encode some text "); + System.out.println(" 2. Decode using user-entered rotor starting values "); + System.out.println(" 3. Decode by trying all possible rotor combinations "); + System.out.println(" 4. Exit program "); + System.out.print("Your choice: "); + String menuChoice = keyboard.nextLine(); + + // handle user input for "exit" + if( menuChoice.equals("4") ) { + System.out.println("Exit was chosen."); + // skip rest of code + System.exit( 0); + } + + // Handle menu options 1 or 2, both of which prompt the user for the starting rotor + // values. Start with the code that initializes the rotor arrays that will be used + // in encoding/decoding. + if( (menuChoice.equals("1")) || (menuChoice.equals("2")) ) { + // Encode or Decode using user-entered values + + // prompt for and store starting rotor values + promptForStartingRotorValuesAndRotateRotors(); + + }//end if( (menuChoice.equals... + switch (menuChoice) { + case "1": + // Selected "1" to encode some text + encodeText(); + // skip rest of code + System.out.println("\n" + + "Exiting after encoding text..."); + System.exit( 0); + //end else if( menuchoice.equals... + case "2": + case "3": + // Selected "2" to decode using user-entered values, or + // selected "3" to decode trying all possible rotor starting positions. + + // Prompt for cipherText to use + System.out.print("Enter the cipherText to be decoded: "); + cipherText = keyboard.nextLine(); + // convert to upper case and make it into a character array + cipherTextArray = cipherText.toUpperCase().toCharArray(); + if( menuChoice.equals("2") ) { + // Decode using user-entered values + // send the cipherText, which will be decoded and returned in place + decodeText( cipherTextArray); + // display answer + System.out.println("Decoded text is: " + String.copyValueOf( cipherTextArray)); + } + else { + // menuChoice was "3", which should try all possible starting rotor positions + tryAllRotorPositions( cipherTextArray); + + // display best decoded text found + System.out.println("\n" + + "Decoded text is: " + bestDecryptedString + "\n"); + // for some reason the stored rotor settings are incorrect, though the decrypted string is correct. ??? + // "Using rotor settings: " + bestInnerRotorSetting + bestMiddleRotorSetting + bestOuterRotorSetting); + + }//end else + break; + default: + System.out.println("Invalid menu option chosen. Please re-run program"); + // skip rest of code + System.exit( 0); + } + + }//end mainLoop() + + + // Prompt for and store the starting rotor values. + // Do some sanity check evaluation of the input values as well. + public void promptForStartingRotorValuesAndRotateRotors() + { + System.out.print("Enter the inner, mid, and outer rotor starting letters (e.g. ABC) or press enter for default: "); + String userInput = keyboard.nextLine(); + if( userInput.length() == 0) { + // user wants defaults of blanks to be the starting letters + System.out.println("Default of blanks used for the starting letters."); + innerRotorStartingLetter = ' '; + middleRotorStartingLetter = ' '; + outerRotorStartingLetter = ' '; + } + else { + // there was user input to select the starting letters for each rotor + + // convert userInput to all upper case + userInput = userInput.toUpperCase(); + // extract characters for starting rotor values + innerRotorStartingLetter = userInput.charAt( 0); + middleRotorStartingLetter = userInput.charAt( 1); + outerRotorStartingLetter = userInput.charAt( 2); + + // Sanity check + if( (userInput.length() != 3) || + (innerRotorStartingLetter != ' ' && !Character.isLetter( innerRotorStartingLetter) ) || + (middleRotorStartingLetter != ' ' && !Character.isLetter( middleRotorStartingLetter) ) || + (outerRotorStartingLetter != ' ' && !Character.isLetter( outerRotorStartingLetter) ) + ) { + // There was a problem, so exit program + System.out.println("*** Invalid rotor letters. Exiting program..."); + System.exit( -1); + } + }//end else + + // Rotate rotor arrays to reflect the user-selected starting letter + rotateRotors( innerRotorStartingLetter, middleRotorStartingLetter, outerRotorStartingLetter); + + }//end promptForAndStoreStartingRotorValues() + + + // Rotate rotors based on starting letters. Then reinitialize the arrays of rotor index values + // used to speed up program execution. + public void rotateRotors(char innerRotorStartingLetter, + char middleRotorStartingLetter, + char outerRotorStartingLetter) + { + // rotate rotors to the given starting letter + rotateRotorToStartingCharacter( innerRotorStartingLetter, innerRotor); + rotateRotorToStartingCharacter( middleRotorStartingLetter, middleRotor); + rotateRotorToStartingCharacter( outerRotorStartingLetter, outerRotor); + + // Set rotor index values based on the rotor characters. Though not essential, + // this speeds up the program since we can jump right to a letter and don't need + // to search for it within each rotor. + setRotorIndexValues(innerRotorIndex, innerRotor); + setRotorIndexValues(middleRotorIndex, middleRotor); + setRotorIndexValues(outerRotorIndex, outerRotor); + }//end rotateRotors() + + + // rotate the rotor letters to reflect the user's choice of rotor starting position. + public void rotateRotorToStartingCharacter( char theLetter, char[] theRotor) + { + // first make a copy of the original array so we have the values to use + // while we modify the original + char[] theRotorCopy = new char[ theRotor.length]; + for ( int i=0; i 0, otherwise empty Strings are considered found in the dictionary + if (wordExists(wordsArray1.toLowerCase()) && (wordsArray1.length() > 0)) { + wordFoundCount++; + // For debugging: + //System.out.println("Found " + wordsArray[ i]); + } + } //end for( int i... + + return wordFoundCount; + }//end dictionaryLookup... + + + // If we have a new best case scenario, store the values so we can use it to decode + public void storeBestCase(String cipherText, + int numberOfDictionaryHits, + char innerRotorSetting, + char middleRotorSetting, + char outerRotorSetting) + { + // Store information if we have a new best case + if( numberOfDictionaryHits > bestNumberOfDictionaryHits) { + // we have a new best case, so store these values + bestNumberOfDictionaryHits = numberOfDictionaryHits; // store best number of dictionary hits + bestDecryptedString = new String( cipherText); // store best decrypted text + bestInnerRotorSetting = innerRotorSetting; // store best rotor settings + bestMiddleRotorSetting = middleRotorSetting; + bestOuterRotorSetting = outerRotorSetting; + // display values for debugging + /* + System.out.println("\n" + + "New best case with " + numberOfDictionaryHits + " hits. " + + "Rotors set to: " + innerRotorSetting + middleRotorSetting + outerRotorSetting + ". " + + " PlainText: " + bestDecryptedString + + "\n"); + */ + }//end if( numberOfDictionaryHits... + + }//end storeBestCase(...) + + // Read in the words to create the dictionary. + // It throws an IOException, which is a way to gracefully handle errors + // should there be a problem reading from the input. + + public void readInDictionaryWords() throws IOException + { + // Define a Scanner to read from an input file. Note that the name of + // the file given in the code below MUST match the actual filename of + // the dictionary file. This file should be in the same directory + // as the source code for WordCross.java + File dictionaryFile = new File("C:\\Users\\THE NET\\Documents\\GitHub\\Java2014\\1401417015 AngelFlag\\EnigmaMashine\\Dictionary.txt"); + // declare the file + // print the directory where this program expects to find dictionary + System.out.println(System.getProperty("C:\\Users\\THE NET\\Documents\\GitHub\\Java2014\\1401417015 AngelFlag\\EnigmaMashine")); + // ensure file exists and is in the correct directory + if( ! dictionaryFile.exists()) { + System.out.println("*** Error *** \n" + + "Your dictionary file has the wrong name or is " + + "in the wrong directory. \n" + + "Aborting program...\n\n"); + System.exit( -1); // Terminate the program + } + Scanner inputFile = new Scanner( dictionaryFile); + + // while there are words in the input file, add them to the dictionary + while( inputFile.hasNext()) { + dictionary.add( inputFile.nextLine() ); + } + }//end createDictionary() + + + // Allow looking up a word in dictionary, returning a value of true or false + public boolean wordExists( String wordToLookup) + { + if( dictionary.contains( wordToLookup)) { + return true; // words was found in dictionary1 + } + else { + return false; // word was not found in dictionary + } + }//end wordExists + + +}//end Class Enigma + diff --git a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java index ee15792..d86c3b3 100644 --- a/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java +++ b/1401417015 AngelFlag/Fibonacci/src/fibonacci/Fibonacci.java @@ -18,7 +18,7 @@ public class Fibonacci { public static void main(String[] args) { Scanner input = new Scanner(System.in); - System.out.print("enter number:"); + System.out.print("enter numbers:"); int number = input.nextInt(); int count=1; int c =1,b=1,a=0; diff --git a/1401417015 AngelFlag/animals/build.xml b/1401417015 AngelFlag/animals/build.xml index fed16b2..6b23ea5 100644 --- a/1401417015 AngelFlag/animals/build.xml +++ b/1401417015 AngelFlag/animals/build.xml @@ -7,8 +7,8 @@ - - Builds, tests, and runs the project animals. + + Builds, tests, and runs the project animalCheresharov. + + + + + + + + + Builds, tests, and runs the project darekAnimal. + + + diff --git a/1401417015 AngelFlag/darekAnimal/manifest.mf b/1401417015 AngelFlag/darekAnimal/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darekAnimal/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darekAnimal/src/darekanimal/Animal.java b/1401417015 AngelFlag/darekAnimal/src/darekanimal/Animal.java new file mode 100644 index 0000000..20de322 --- /dev/null +++ b/1401417015 AngelFlag/darekAnimal/src/darekanimal/Animal.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darekanimal; + +/** + * + * @author THE NET + */ +public class Animal { + + private String name = "Animal"; + public String favFood = "Food"; + + protected final void changeName(String newName){ + this.name = newName; + + } + protected final String getName(){ + return this.name; + } + public void eatStuff(){ + System.out.println("Yum " + favFood); + } + + public void walkAround(){ + System.out.println(this.name + "walks around"); + } + + public Animal(){ + + } + + public Animal(String name, String favFood){ + this.changeName(name); + this.favFood = favFood; + } + +} diff --git a/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java b/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java new file mode 100644 index 0000000..19fa35e --- /dev/null +++ b/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java @@ -0,0 +1,35 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darekanimal; + +/** + * + * @author THE NET + */ +public class Cats extends Animal{ + public String favToy = "Ball"; + public void playWith(){ + System.out.println("Yeah " + favToy); + } + + public void walkAround(){ + System.out.println(this.getName() + "stalks around then sleeps "); + } + + + public String getToy(){ + return this.favToy; +} + + public Cats(){ + + } + + public Cats(String name, String favFood, String favToy){ + super(name,favFood); + this.favToy = favToy; + } +} diff --git a/1401417015 AngelFlag/darekAnimal/src/darekanimal/DarekAnimal.java b/1401417015 AngelFlag/darekAnimal/src/darekanimal/DarekAnimal.java new file mode 100644 index 0000000..6519d7d --- /dev/null +++ b/1401417015 AngelFlag/darekAnimal/src/darekanimal/DarekAnimal.java @@ -0,0 +1,49 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darekanimal; + + +public class DarekAnimal { + + public static void main(String[] args) { + + Animal genericAnimal = new Animal(); + + System.out.println(genericAnimal.getName()); + System.out.println(genericAnimal.favFood); + + Cats morris = new Cats("Morris", "Tuna", "Rubber mouse"); + + System.out.println(morris.getName()); + System.out.println(morris.favFood); + System.out.println(morris.favToy); + + Animal tabby = new Cat("Tabby", "Salmon", "Ball"); + + acceptAnimal(tabby); + } + public static void acceptAnimal(Animal randAnimal){ + System.out.println(); + System.out.println(randAnimal.getName()); + System.out.println(randAnimal.favFood); + System.out.println(); + + randAnimal.walkAround(); + + System.out.println(randAnimal.favFood); + Cats tempCat = (Cats) randAnimal; + System.out.println(tempCat.favToy); + + System.out.println(((Cats)randAnimal).favToy); + // ((Cats)randAnimal) + if( randAnimal instanceof Cats){ + System.out.println(randAnimal.getName() + "is a Cat"); + } + } +} + + + diff --git a/1401417015 AngelFlag/logic/build.xml b/1401417015 AngelFlag/logic/build.xml new file mode 100644 index 0000000..877e90b --- /dev/null +++ b/1401417015 AngelFlag/logic/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project logic. + + + diff --git a/1401417015 AngelFlag/logic/manifest.mf b/1401417015 AngelFlag/logic/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/logic/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/logic/src/logic/Logic.java b/1401417015 AngelFlag/logic/src/logic/Logic.java new file mode 100644 index 0000000..f21439d --- /dev/null +++ b/1401417015 AngelFlag/logic/src/logic/Logic.java @@ -0,0 +1,32 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package logic; + + +public class Logic { + + + public static void main(String[] args) { + + short a = 3; + short b = 5; + + System.out.println ("a | b " + (a | b)); // + (a | b); + System.out.println("a & b " + (a & b)); + System.out.println("a ^ b " + (a ^ b)); + + String name = "Boris"; + String town = "Plovdiv"; + int age = 18; + String s = name; + + System.out.println("My name is " + s + " from " + town +" and " + "I am " + age + " Old"); + + System.out.printf("The time is: %1$tH:%1$tM:%1$tS.\n",new java.util.Date()); + //System.out.printf("The time is: %1$tH:%1$tM:%1$tS.\n",new java.util.Timer()); + } + +} diff --git a/1401417015 AngelFlag/method/src/method/Method.java b/1401417015 AngelFlag/method/src/method/Method.java deleted file mode 100644 index 7a1831e..0000000 --- a/1401417015 AngelFlag/method/src/method/Method.java +++ /dev/null @@ -1,44 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package method; - -/** - * - * @author THE NET - */ -import java.util.Scanner; -import java.util.*; -public class Method { -public static final double FAVNUMBER = 1.6180; - -private String name; -private int weight; -private boolean hasOwner = false; -private byte age; -private long uniqueID; -private char favoriteChar; -private double speed; -private float height; - -protected static int numberofAnimals = 0; - -static Scanner userinput = new Scanner(System.in); - -public Animal P() { - numberofAnimals++; - - int sumofNumbers = 5+1; - System.out.println(private) -} - - /** - * @param args the command line arguments - */ - public static void main(String[] args) { - // TODO code application logic here - } - -} From 6b633f99f78ec6a329ae209ec788030258e69432 Mon Sep 17 00:00:00 2001 From: FlagBg Date: Thu, 29 Jan 2015 00:42:27 +0200 Subject: [PATCH 40/41] nxt nxt --- .../Darek13/src/darek13/Darek13.java | 2 +- .../Darek15interfaces/build.xml | 73 ++++ .../Darek15interfaces/manifest.mf | 3 + .../src/darek15interfaces/Crashable.java | 23 ++ .../darek15interfaces/Darek15interfaces.java | 22 ++ .../src/darek15interfaces/Drivable.java | 22 ++ .../src/darek15interfaces/Vehicle.java | 41 ++ .../src/darek9arrays/Darek9Arrays.java | 364 ++++++++---------- .../darekAnimal/src/darekanimal/Cat.java | 34 ++ .../src/darekanimal/DarekAnimal.java | 10 +- .../src/exam1task9b/Exam1task9b.java | 28 +- .../src/exam1task9c/Exam1task9c.java | 5 +- .../exam2_11/src/exam2_11/Exam2_11.java | 5 +- .../exam2_4.1/src/exam2_4/pkg1/Exam2_41.java | 1 + .../logic/src/logic/Logic.java | 77 +++- .../logic/src/logic/biggerNumber.java | 14 + 16 files changed, 489 insertions(+), 235 deletions(-) create mode 100644 1401417015 AngelFlag/Darek15interfaces/build.xml create mode 100644 1401417015 AngelFlag/Darek15interfaces/manifest.mf create mode 100644 1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Crashable.java create mode 100644 1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Darek15interfaces.java create mode 100644 1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java create mode 100644 1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java create mode 100644 1401417015 AngelFlag/darekAnimal/src/darekanimal/Cat.java create mode 100644 1401417015 AngelFlag/logic/src/logic/biggerNumber.java diff --git a/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java b/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java index fee9fc3..8356845 100644 --- a/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java +++ b/1401417015 AngelFlag/Darek13/src/darek13/Darek13.java @@ -10,7 +10,7 @@ public class Darek13 { public static void main(String[] args) { - String randomString = "I am just a randomstring"; + String randomString = "I am just a random string"; String gotToQuote= "He said, \"I'm here\""; int numTwo = 2; diff --git a/1401417015 AngelFlag/Darek15interfaces/build.xml b/1401417015 AngelFlag/Darek15interfaces/build.xml new file mode 100644 index 0000000..b21fdf3 --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project Darek15interfaces. + + + diff --git a/1401417015 AngelFlag/Darek15interfaces/manifest.mf b/1401417015 AngelFlag/Darek15interfaces/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Crashable.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Crashable.java new file mode 100644 index 0000000..1412e50 --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Crashable.java @@ -0,0 +1,23 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek15interfaces; + +/** + * + * @author THE NET + */ +public abstract class Crashable { + boolean carDrivable = true; + + public void youCrashed(){ + this.carDrivable = false; + } + + public abstract void setCarStrength(int carStrenght); + + public abstract int getCarStrenthg(); + +} diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Darek15interfaces.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Darek15interfaces.java new file mode 100644 index 0000000..b1a90a6 --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Darek15interfaces.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek15interfaces; + +/** + * + * @author THE NET + */ +public class Darek15interfaces { + + public static void main(String[] args) { + + Vehicle car = new Vehicle(4,100.00); + + System.out.println("Car Max Speed " + car.getSpeed()); + System.out.println("Num of Wheels " + car.getWheels()); + } + +} diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java new file mode 100644 index 0000000..749ab88 --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek15interfaces; + +/** + * + * @author THE NET + */ +public interface Drivable { + + public abstract int getWheels(); + + void setWheels(int numWheels); + + double getSpeed(); + + void setSpeed(double speed); + +} diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java new file mode 100644 index 0000000..fb5fdba --- /dev/null +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java @@ -0,0 +1,41 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek15interfaces; + +/** + * + * @author THE NET + */ +public class Vehicle implements Drivable { + + + int numOfWheels = 2; + double theSpeed = 0; + + int carStrength = 0; + + + public int getWheels(){ + return this.numOfWheels; + } + + public void setWheels(int numWheels){ + this.numOfWheels = numOfWheels; + } + + public double getSpeed(){ + return this.theSpeed; + } + + public void setSpeed(double speed){ + this.theSpeed = speed; + } + + public Vehicle(int wheels, double speed){ + this.numOfWheels = wheels; + this.theSpeed = speed; + } +} diff --git a/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java b/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java index 94c8f42..c9852c3 100644 --- a/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java +++ b/1401417015 AngelFlag/Darek9Arrays/src/darek9arrays/Darek9Arrays.java @@ -7,11 +7,11 @@ import java.util.Arrays; -/** - * - * @author THE NET - */ - public class Darek9Arrays { + +public class Darek9Arrays { + + + public static void main(String[] args) { // An array is a variable that can hold a bunch of values @@ -35,200 +35,160 @@ public class Darek9Arrays { randomArray = new int[20]; randomArray[1] = 2; // You can also create the array and its values from the start - String[] stringArray = {"Just", "Random", "Words"}; - - // You can add values with a loop // arrayName.length returns the number of elements in the array -038 for(int i = 0; i < numberArray.length; i++) -039 { -040 -041 numberArray[i] = i; -042 -043 } -044 -045 // Draws 41 lines on the screen -046 int k = 1; -047 while(k <= 41){ System.out.print('-'); k++; } -048 System.out.println(); -049 -050 // Cycles through all of the boxes in the array and prints them -051 for(int j = 0; j < numberArray.length; j++) -052 { -053 System.out.print("| " + j + " "); -054 } -055 System.out.println("|"); -056 -057 // Draws 41 lines on the screen -058 k = 1; -059 while(k <= 41){ System.out.print('-'); k++; } -060 System.out.println(); -061 -062 // Multidimensional Array -063 // To but arrays in an array just add another [] -064 -065 String[][] multiDArray = new String[10][10]; -066 -067 // Adding values to a multidimensional array -068 -069 for(int i = 0; i < multiDArray.length; i++) -070 { -071 -072 // To get the length for the array in the array you must follow it -073 // with brackets with the index between them like [i] -074 -075 for(int j = 0; j < multiDArray[i].length; j++) -076 { -077 -078 multiDArray[i][j] = i + " " + j; -079 -080 } -081 -082 } -083 -084 // Draws 61 lines on the screen -085 k = 1; -086 while(k <= 61){ System.out.print('-'); k++; } -087 System.out.println(); -088 -089 // Prints out a multidimensional array with the values being the indexes -090 -091 for(int i = 0; i < multiDArray.length; i++) -092 { -093 -094 for(int j = 0; j < multiDArray[i].length; j++) -095 { -096 -097 System.out.print("| " + multiDArray[i][j] + " "); -098 -099 } -100 System.out.println("|"); -101 -102 } -103 -104 // Draws 61 lines on the screen -105 k = 1; -106 while(k <= 61){ System.out.print('-'); k++; } -107 System.out.println(); -108 -109 // You can use the enhanced for loop to print out array values -110 // for(itemDataType tempVariable : arrayName) -111 -112 for(int row : numberArray) -113 { -114 System.out.print(row); -115 } -116 System.out.println("\n"); -117 -118 // To use enhanced for for a multidimensional array you follow this formula -119 // for(dataType[] varForRow : arrayName) -120 -121 for(String[] rows : multiDArray) -122 { -123 // for(elementDataType varForColumn : varForRow) -124 for(String column : rows) -125 { -126 System.out.print("| " + column + " "); -127 } -128 System.out.println("|"); -129 } -130 -131 // You can copy an array in a couple of ways -132 // Arrays.copyOf(arrayToCopy, numberToCopyFromBeginning); -133 -134 int[] numberCopy = Arrays.copyOf(numberArray, 5); -135 for(int num : numberCopy) -136 { -137 System.out.print(num); -138 } -139 System.out.println("\n"); -140 -141 // You can copy an array from one index to another with copyOfRange -142 // int[] numberCopy = Arrays.copyOf(numberArray, 1, 5); -143 -144 // You can print out the whole array with toString -145 System.out.println(Arrays.toString(numberCopy)); -146 -147 -148 // Do define a default value for an array use fill -149 // Arrays.fill(arrayName, valueToFill); -150 // valueToFill must be the same for each element in the array -151 -152 int[] moreNumbers = new int[100]; -153 Arrays.fill(moreNumbers, 2); -154 -155 // Filling a multidimensional array -156 char[][] boardGame = new char[10][10]; -157 for(char[] row : boardGame) -158 { -159 Arrays.fill(row, '*'); -160 } -161 -162 // You can sort an array using sort() -163 int[] numsToSort = new int[10]; -164 -165 // Generate array full of random numbers -166 for(int i = 0; i < 10; i++) -167 { -168 numsToSort[i] = (int) (Math.random() * 100); -169 } -170 -171 // Sort the array in ascending order -172 Arrays.sort(numsToSort); -173 -174 System.out.println(Arrays.toString(numsToSort)); -175 -176 // binarySearch returns the index for the searched for value -177 // If it doesn't find it it returns a negative number -178 -179 int whereIs50 = Arrays.binarySearch(numsToSort, 50); -180 -181 System.out.println(whereIs50); -182 } -183 -184 } -- See more at: http://www.newthinktank.com/2012/01/java-video-tutorial-9/#sthash.uHpEp6XK.dpuf -// public static void main(String[] args) { -// -// int[] randomArray; -// -// int[] numberArray = new int[10]; -// -// randomArray = new int[20]; -// randomArray[1] = 2; -// -// String[] stringArray = {"just", "random", "words"}; -// -// for(int i = 0; i < numberArray.length; i++) -// { -// numberArray[i] = i; -// } -// -// int k = 1; -// while (k <= 41) -// {System.out.println("-"); k++;} -// System.out.println(); -// -// for(int j =0; j= 0; i--){ + + System.out.println("array value: " + array[i]); + } + //otpechatvane na shahmatna daska Nakov 203 stranica; + int[][] matrix = { + {1,2,3,4}, + {5,6,7,8} + }; + for(int row=0;row<=matrix.length;row++){ + for(int col = 0; col50); {System.out.println(d1 + "*" + d2 + "=" + d3); @@ -23,7 +20,8 @@ public static void bigger(double d1, double d2) { } public static void main(String[] args) { - f(11,12); +// 2 + double d1 = 4.5; double d2 = 5; bigger(d1,d2); bigger(5,10); @@ -38,15 +36,11 @@ public static void main(String[] args) scanner.close (); if((i*j)>50); System.out.println(i * j); - - } - private static void Falcon(double 28, double 3.4); - - System.out.println(a1*) - } -{ - -} - - -} + } + + } +// private static void Falcon(double 28, double 3.4); +// +// System.out.println(a1*) +//// } +//{ \ No newline at end of file diff --git a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java index f588176..a1e7fc0 100644 --- a/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java +++ b/1401417015 AngelFlag/exam1task9c/src/exam1task9c/Exam1task9c.java @@ -18,10 +18,11 @@ public class Exam1task9c { public static void m(double d1, double d2){ if (d1+d2> 20) System.out.println((d1+d2)*(d1-d2)); - else - System.out.println((d1+d2)/5)); + else + System.out.println("PARAGRAFF 22"); } + public static void main(String[] args) { m(11,15); m(5,11); diff --git a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java index b86e82c..b69ac51 100644 --- a/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java +++ b/1401417015 AngelFlag/exam2_11/src/exam2_11/Exam2_11.java @@ -15,7 +15,7 @@ public class Exam2_11 { */ public static void main(String[] args) { - int[] myArray = {1,2,3,4,5}; + int[] myArray = {6,7,8,9,10}; int[] array = {1,2,3,4,5}; m1(myArray); m2(array); @@ -43,6 +43,3 @@ public static void m2(int[] n){ //array[i] = input.nextInt(); } - -} -} diff --git a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java index fec7b31..720ca16 100644 --- a/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java +++ b/1401417015 AngelFlag/exam2_4.1/src/exam2_4/pkg1/Exam2_41.java @@ -28,3 +28,4 @@ public static void main(String[] args) { max1(34,4); } +} diff --git a/1401417015 AngelFlag/logic/src/logic/Logic.java b/1401417015 AngelFlag/logic/src/logic/Logic.java index f21439d..50b9b98 100644 --- a/1401417015 AngelFlag/logic/src/logic/Logic.java +++ b/1401417015 AngelFlag/logic/src/logic/Logic.java @@ -5,28 +5,97 @@ */ package logic; +import java.util.Scanner; public class Logic { public static void main(String[] args) { - short a = 3; - short b = 5; + Scanner input = new Scanner(System.in); + System.out.print("Enter a= "); + int a= input.nextInt(); + System.out.print("Enter b= "); + int b= input.nextInt(); + System.out.print("a + b = "+ (a+b)); + System.out.print("a*b = " + (a*b)); System.out.println ("a | b " + (a | b)); // + (a | b); System.out.println("a & b " + (a & b)); System.out.println("a ^ b " + (a ^ b)); String name = "Boris"; String town = "Plovdiv"; - int age = 18; String s = name; - + int age = 18; + //string replace System.out.println("My name is " + s + " from " + town +" and " + "I am " + age + " Old"); System.out.printf("The time is: %1$tH:%1$tM:%1$tS.\n",new java.util.Date()); //System.out.printf("The time is: %1$tH:%1$tM:%1$tS.\n",new java.util.Timer()); + + + System.out.println("Enter First number = "); + int firstNumber = input.nextInt(); + System.out.println("Enter Second Number = "); + int secondNumber = input.nextInt(); + + int biggerNumber = firstNumber; + if (secondNumber>firstNumber){ + biggerNumber = secondNumber;} + System.out.printf("The bigger number is: %d%n", biggerNumber); + + if (biggerNumber >= 5){ + System.out.println("The Bigger number is >5");} + else { + System.out.println("The Bigger number is <5"); + } + //if,else, for + + while (biggerNumber<10) + { + System.out.println(biggerNumber); + biggerNumber++; + } + //triugulnik + System.out.print("enter value for n:= "); + int n = input.nextInt(); + + for(int row =1; row <= n; row++){ + for(int col =1; col <= row; col++){ + System.out.print(col); //" "); + } + System.out.println(); + } + System.out.println("enter value for k:= "); + int k = input.nextInt(); + + for(int row = 1; row<=k; row++){ + for(int row2 = 1; row2 { + +} From 83ee5ab3d9b1340c64b06bf2c9fa3dcd4e808afe Mon Sep 17 00:00:00 2001 From: FlagBg Date: Wed, 18 Feb 2015 18:14:30 +0200 Subject: [PATCH 41/41] update update --- .../src/darek15interfaces/Drivable.java | 5 +- .../src/darek15interfaces/Vehicle.java | 5 +- .../Enigma/src/enigma/Enigma.java | 4 +- .../EnigmaMashine/dictionary.txt | 2 +- .../src/enigmamashine/EnigmaMashine.java | 4 +- .../Human/src/human/Human.java | 4 - .../Human/src/human/student.java | 6 +- 1401417015 AngelFlag/JavaPractis/build.xml | 73 ++++++++++ 1401417015 AngelFlag/JavaPractis/manifest.mf | 3 + .../src/javapractis/ButtonListener.java | 19 +++ .../src/javapractis/JavaPractis.java | 93 ++++++++++++ 1401417015 AngelFlag/JavaPractise/build.xml | 73 ++++++++++ 1401417015 AngelFlag/JavaPractise/manifest.mf | 3 + .../src/javapractise/ButtonListener.java | 22 +++ .../src/javapractise/JavaPractise.java | 68 +++++++++ .../src/javapractise/PrivatePerson.java | 57 ++++++++ 1401417015 AngelFlag/JavaPractise1/build.xml | 73 ++++++++++ .../JavaPractise1/manifest.mf | 3 + .../src/javapractise1/JavaPractise1.java | 21 +++ .../src/javapractise1/Person.java | 12 ++ .../src/javapractise1/PrivatePerson.java | 60 ++++++++ .../JavaPractiseFrame/build.xml | 73 ++++++++++ .../JavaPractiseFrame/manifest.mf | 3 + .../javapractiseframe/JavaPractiseFrame.java | 55 +++++++ .../src/javapractiseframe/Jpanel1.java | 22 +++ .../animals/src/animals/Animal.java | 5 +- .../animals/src/animals/Animals.java | 9 +- .../animals/src/animals/Cat.java | 4 + .../animals/src/animals/Dog.java | 3 +- 1401417015 AngelFlag/darek19/build.xml | 73 ++++++++++ 1401417015 AngelFlag/darek19/manifest.mf | 3 + .../darek19/src/darek19/Darek19.java | 134 ++++++++++++++++++ .../darekAnimal/src/darekanimal/Cats.java | 35 ----- 1401417015 AngelFlag/exam_feb1/build.xml | 73 ++++++++++ 1401417015 AngelFlag/exam_feb1/manifest.mf | 3 + .../exam_feb1/src/exam_feb1/.LCKStudent.java~ | 1 + .../exam_feb1/src/exam_feb1/Exam_feb1.java | 21 +++ .../exam_feb1/src/exam_feb1/Person.java | 14 ++ .../exam_feb1/src/exam_feb1/Student.java | 14 ++ .../exam_feb1/src/exam_feb1/printInfo.java | 11 ++ .../src/oop1_myworld/Athlete.java | 23 ++- .../src/oop1_myworld/Introduceable.java | 11 +- .../src/oop1_myworld/Oop1_MyWorld.java | 31 ++-- .../oop1_MyWorld/src/oop1_myworld/Person.java | 15 +- .../src/oop1_myworld/Student.java | 22 ++- 1401417015 AngelFlag/tryPhp/build.xml | 73 ++++++++++ 1401417015 AngelFlag/tryPhp/manifest.mf | 3 + .../tryPhp/src/tryphp/TryPhp.java | 21 +++ 48 files changed, 1252 insertions(+), 113 deletions(-) create mode 100644 1401417015 AngelFlag/JavaPractis/build.xml create mode 100644 1401417015 AngelFlag/JavaPractis/manifest.mf create mode 100644 1401417015 AngelFlag/JavaPractis/src/javapractis/ButtonListener.java create mode 100644 1401417015 AngelFlag/JavaPractis/src/javapractis/JavaPractis.java create mode 100644 1401417015 AngelFlag/JavaPractise/build.xml create mode 100644 1401417015 AngelFlag/JavaPractise/manifest.mf create mode 100644 1401417015 AngelFlag/JavaPractise/src/javapractise/ButtonListener.java create mode 100644 1401417015 AngelFlag/JavaPractise/src/javapractise/JavaPractise.java create mode 100644 1401417015 AngelFlag/JavaPractise/src/javapractise/PrivatePerson.java create mode 100644 1401417015 AngelFlag/JavaPractise1/build.xml create mode 100644 1401417015 AngelFlag/JavaPractise1/manifest.mf create mode 100644 1401417015 AngelFlag/JavaPractise1/src/javapractise1/JavaPractise1.java create mode 100644 1401417015 AngelFlag/JavaPractise1/src/javapractise1/Person.java create mode 100644 1401417015 AngelFlag/JavaPractise1/src/javapractise1/PrivatePerson.java create mode 100644 1401417015 AngelFlag/JavaPractiseFrame/build.xml create mode 100644 1401417015 AngelFlag/JavaPractiseFrame/manifest.mf create mode 100644 1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/JavaPractiseFrame.java create mode 100644 1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/Jpanel1.java create mode 100644 1401417015 AngelFlag/darek19/build.xml create mode 100644 1401417015 AngelFlag/darek19/manifest.mf create mode 100644 1401417015 AngelFlag/darek19/src/darek19/Darek19.java delete mode 100644 1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java create mode 100644 1401417015 AngelFlag/exam_feb1/build.xml create mode 100644 1401417015 AngelFlag/exam_feb1/manifest.mf create mode 100644 1401417015 AngelFlag/exam_feb1/src/exam_feb1/.LCKStudent.java~ create mode 100644 1401417015 AngelFlag/exam_feb1/src/exam_feb1/Exam_feb1.java create mode 100644 1401417015 AngelFlag/exam_feb1/src/exam_feb1/Person.java create mode 100644 1401417015 AngelFlag/exam_feb1/src/exam_feb1/Student.java create mode 100644 1401417015 AngelFlag/exam_feb1/src/exam_feb1/printInfo.java create mode 100644 1401417015 AngelFlag/tryPhp/build.xml create mode 100644 1401417015 AngelFlag/tryPhp/manifest.mf create mode 100644 1401417015 AngelFlag/tryPhp/src/tryphp/TryPhp.java diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java index 749ab88..961bf4f 100644 --- a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Drivable.java @@ -5,10 +5,7 @@ */ package darek15interfaces; -/** - * - * @author THE NET - */ + public interface Drivable { public abstract int getWheels(); diff --git a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java index fb5fdba..1bef126 100644 --- a/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java +++ b/1401417015 AngelFlag/Darek15interfaces/src/darek15interfaces/Vehicle.java @@ -5,10 +5,7 @@ */ package darek15interfaces; -/** - * - * @author THE NET - */ + public class Vehicle implements Drivable { diff --git a/1401417015 AngelFlag/Enigma/src/enigma/Enigma.java b/1401417015 AngelFlag/Enigma/src/enigma/Enigma.java index 4909cd1..025040b 100644 --- a/1401417015 AngelFlag/Enigma/src/enigma/Enigma.java +++ b/1401417015 AngelFlag/Enigma/src/enigma/Enigma.java @@ -13,9 +13,7 @@ // public static void main(String[] args) { // -// } -// -//} + /** ------------------------------------------------------------------------ * Enigma.java diff --git a/1401417015 AngelFlag/EnigmaMashine/dictionary.txt b/1401417015 AngelFlag/EnigmaMashine/dictionary.txt index 4329d71..8ce4492 100644 --- a/1401417015 AngelFlag/EnigmaMashine/dictionary.txt +++ b/1401417015 AngelFlag/EnigmaMashine/dictionary.txt @@ -1 +1 @@ -plovdiv \ No newline at end of file +Plovdiv Fashion Week \ No newline at end of file diff --git a/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java b/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java index fe70098..6b9d962 100644 --- a/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java +++ b/1401417015 AngelFlag/EnigmaMashine/src/enigmamashine/EnigmaMashine.java @@ -58,7 +58,7 @@ void mainLoop() throws IOException // Now fill the dictionary array list with words from the dictionary file readInDictionaryWords(); - String cipherText = " "; // stores user Input in main loop + String cipherText = ""; // stores user Input in main loop char[] cipherTextArray; // starts with the cipherText; Eventually will store the decrypted text // Display identifying information @@ -208,7 +208,7 @@ public void rotateRotorToStartingCharacter( char theLetter, char[] theRotor) // first make a copy of the original array so we have the values to use // while we modify the original char[] theRotorCopy = new char[ theRotor.length]; - for ( int i=0; i + + + + + + + + + + Builds, tests, and runs the project JavaPractis. + + + diff --git a/1401417015 AngelFlag/JavaPractis/manifest.mf b/1401417015 AngelFlag/JavaPractis/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractis/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/JavaPractis/src/javapractis/ButtonListener.java b/1401417015 AngelFlag/JavaPractis/src/javapractis/ButtonListener.java new file mode 100644 index 0000000..6915e94 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractis/src/javapractis/ButtonListener.java @@ -0,0 +1,19 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractis; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; + + +public class ButtonListener implements ActionListener{ + + @Override + public void actionPerformed(ActionEvent ae) { + System.out.println("sadfadsfasfasfads"); + } + +} diff --git a/1401417015 AngelFlag/JavaPractis/src/javapractis/JavaPractis.java b/1401417015 AngelFlag/JavaPractis/src/javapractis/JavaPractis.java new file mode 100644 index 0000000..d4c0319 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractis/src/javapractis/JavaPractis.java @@ -0,0 +1,93 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractis; + +import java.awt.FlowLayout; +import java.awt.GridLayout; +import java.awt.LayoutManager; +import java.util.ArrayList; +import javax.swing.JButton; +import javax.swing.JFrame; +import javax.swing.JLabel; +import javax.swing.JPanel; +import javax.swing.JTextField; + + +public class JavaPractis extends JFrame { + + + public JPanel gorenPanel = new JPanel(); + public JPanel dolenPanel = new JPanel(); + + public JLabel fLabel = new JLabel("First Name"); + public JLabel lLabel = new JLabel("Last Name"); + public JLabel ageLabel = new JLabel("Age"); + + public JButton addButton = new JButton("Add"); + public JButton editButton = new JButton("Edit"); + public JButton deleteButton = new JButton("Delete"); + public JButton printButton = new JButton("Print All"); + + public JTextField firstNameText = new JTextField(); + public JTextField lastNameText = new JTextField(); + public JTextField ageNameText = new JTextField(); + + public ArrayList PersonList = new ArrayList(); + + public JavaPractis(){ + super(); + this.setSize(500,500); + this.setLocation(200,300); + this.setLayout(new GridLayout(2,1)); + + this.add(gorenPanel); + this.add(dolenPanel); + + this.add(fLabel); + this.add(lLabel); + this.add(ageLabel); + + //upPanel + gorenPanel.setLayout(new GridLayout(3,2)); + gorenPanel.add(fLabel); + gorenPanel.add(firstNameText); + gorenPanel.add(lLabel); + gorenPanel.add(lastNameText); + gorenPanel.add(ageLabel); + gorenPanel.add(ageNameText); + + + dolenPanel.setLayout(new FlowLayout()); + dolenPanel.add(addButton); + dolenPanel.add(editButton); + dolenPanel.add(deleteButton); + dolenPanel.add(printButton); + + //public JButton addButton = new JButton("ADD"); + + addButton.addActionListener(new ButtonListener()); + //editButton.addActionListener(null); + + // + + } + + + + public static void main(String[] args) { + JavaPractis Practise = new JavaPractis(); + Practise.setVisible(true); + Practise.setDefaultCloseOperation(EXIT_ON_CLOSE); + + + + } + + private LayoutManager FlowLayout() { + throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. + } + +} diff --git a/1401417015 AngelFlag/JavaPractise/build.xml b/1401417015 AngelFlag/JavaPractise/build.xml new file mode 100644 index 0000000..e09c76b --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project JavaPractise. + + + diff --git a/1401417015 AngelFlag/JavaPractise/manifest.mf b/1401417015 AngelFlag/JavaPractise/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/JavaPractise/src/javapractise/ButtonListener.java b/1401417015 AngelFlag/JavaPractise/src/javapractise/ButtonListener.java new file mode 100644 index 0000000..7a0c6f8 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise/src/javapractise/ButtonListener.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; + +/** + * + * @author THE NET + */ +public class ButtonListener implements ActionListener { + + @Override + public void actionPerformed(ActionEvent ae) { + System.out.println("ZDRASTI"); + } + +} diff --git a/1401417015 AngelFlag/JavaPractise/src/javapractise/JavaPractise.java b/1401417015 AngelFlag/JavaPractise/src/javapractise/JavaPractise.java new file mode 100644 index 0000000..ac366b0 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise/src/javapractise/JavaPractise.java @@ -0,0 +1,68 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise; + +import java.awt.FlowLayout; +import java.awt.GridLayout; +import javax.swing.JButton; +import javax.swing.JFrame; +import javax.swing.JPanel; +import javax.swing.JTextField; + + +public class JavaPractise extends JFrame{ + + + private static final long serialVersionUID = 1L; + public JButton button1 = new JButton("button1"); + //2. TextField1 = vizualen komponent i dobavyame stoinost s ADD v konstruktora + //3. predi da dobavim koi komponenti dobavyame tryabva dakajeme koi layout. pak otivame v konstruktora + //4. suzdaveme oshte poleta + public JTextField TextField2 = new JTextField("second field",8); + public JTextField TextField3 = new JTextField("third field",8); + public JTextField TextField4 = new JTextField("fourth field",8); + public JTextField TextField5 = new JTextField("fifth field",8); + public JTextField TextField6 = new JTextField("sixth field",8); + public JTextField TextField7 = new JTextField("seventh field",8); + public JPanel panel = new JPanel();//Panel + + public JavaPractise(){ + super(); + this.setSize(300, 300); + this.setLocation(640,500); + this.setLayout(new GridLayout(3,3)); + this.add(button1); + this.add(TextField2); + this.add(TextField3); + this.add(TextField4); + this.add(TextField5); + //this.add(TextField6); + //this.add(TextField7); + this.add(panel); + + panel.setLayout(new GridLayout(1,2)); + panel.add(TextField6); + panel.add(TextField7); + + button1.addActionListener(new ButtonListener()); //tryabva da suzdadem class i da go import kato interface(t.e, implement + } + + public static void main(String[] args) { + JavaPractise Practise = new JavaPractise(); + Practise.setVisible(true); + Practise.setDefaultCloseOperation(EXIT_ON_CLOSE); + //dotuk sme suzdali JFrame; + //JTextField(20) + //JButton("OK") - tova e string, koito potrebitelyat go vijda + //JLabel(" ") + //JComboBox(String[]) + //JTable(array[],array[][]) - pravi tablica na ekrana + //suzdavame dve textovi poleta! start!, otivame nad construktora i pravim textovo pole JTextField1 + + //suzdavame button, tova e add. listener, dobavyame go sled dobavyaneto + } + +} diff --git a/1401417015 AngelFlag/JavaPractise/src/javapractise/PrivatePerson.java b/1401417015 AngelFlag/JavaPractise/src/javapractise/PrivatePerson.java new file mode 100644 index 0000000..f58f04f --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise/src/javapractise/PrivatePerson.java @@ -0,0 +1,57 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise; + +public class PrivatePerson { + protected String fName; + protected String lName; + protected int age; + + + public PrivatePerson(String f, String l, int a){ + this.fName = f; + this.lName = l; + this.age = a; + } + + public void printInfo() { + // TODO Auto-generated method stub + System.out.println("FName: " + fName + " |LName: " + + lName + " |Age: " + age); + }// end printInfo() + + + public String getfName() { + return fName; + } + + + public void setfName(String fName) { + this.fName = fName; + } + + + public String getlName() { + return lName; + } + + + public void setlName(String lName) { + this.lName = lName; + } + + + public int getAge() { + return age; + } + + + public void setAge(int age) { + this.age = age; + } + + +}// end class diff --git a/1401417015 AngelFlag/JavaPractise1/build.xml b/1401417015 AngelFlag/JavaPractise1/build.xml new file mode 100644 index 0000000..0ce3b13 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project JavaPractise1. + + + diff --git a/1401417015 AngelFlag/JavaPractise1/manifest.mf b/1401417015 AngelFlag/JavaPractise1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/JavaPractise1/src/javapractise1/JavaPractise1.java b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/JavaPractise1.java new file mode 100644 index 0000000..296fe74 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/JavaPractise1.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise1; + +/** + * + * @author THE NET + */ +public class JavaPractise1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/JavaPractise1/src/javapractise1/Person.java b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/Person.java new file mode 100644 index 0000000..9da76ab --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/Person.java @@ -0,0 +1,12 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise1; + + +public interface Person { + + public void printInfo(); +} diff --git a/1401417015 AngelFlag/JavaPractise1/src/javapractise1/PrivatePerson.java b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/PrivatePerson.java new file mode 100644 index 0000000..9c58cac --- /dev/null +++ b/1401417015 AngelFlag/JavaPractise1/src/javapractise1/PrivatePerson.java @@ -0,0 +1,60 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractise1; + + +public class PrivatePerson implements Person { + + protected String fName; + protected String lName; + protected int age; + + + public PrivatePerson(String f, String l, int a){ + this.fName = f; + this.lName = l; + this.age = a; + } + + @Override + public void printInfo() { + // TODO Auto-generated method stub + System.out.println("FName: " + fName + " |LName: " + + lName + " |Age: " + age); + }// end printInfo() + + + public String getfName() { + return fName; + } + + + public void setfName(String fName) { + this.fName = fName; + } + + + public String getlName() { + return lName; + } + + + public void setlName(String lName) { + this.lName = lName; + } + + + public int getAge() { + return age; + } + + + public void setAge(int age) { + this.age = age; + } + + +} diff --git a/1401417015 AngelFlag/JavaPractiseFrame/build.xml b/1401417015 AngelFlag/JavaPractiseFrame/build.xml new file mode 100644 index 0000000..6ab4f02 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractiseFrame/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project JavaPractiseFrame. + + + diff --git a/1401417015 AngelFlag/JavaPractiseFrame/manifest.mf b/1401417015 AngelFlag/JavaPractiseFrame/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractiseFrame/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/JavaPractiseFrame.java b/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/JavaPractiseFrame.java new file mode 100644 index 0000000..01f074e --- /dev/null +++ b/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/JavaPractiseFrame.java @@ -0,0 +1,55 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractiseframe; + +import java.awt.GridLayout; +import javax.swing.JButton; +import javax.swing.JFrame; +import javax.swing.JTextField; + + +public class JavaPractiseFrame extends JFrame +{ + private static final long serialVersionUID = 1L; + + public Jpanel1 panel = new Jpanel1(); + //public Jpanel2 panel = new Jpanel2(); + + public JTextField TextField2 = new JTextField("ADD",8); + public JTextField TextField3 = new JTextField("EDIT",8); + public JTextField TextField4 = new JTextField("DELETE",8); + public JTextField TextField5 = new JTextField("PRINT ALL",8); + + public JButton button1 = new JButton(); + + public JavaPractiseFrame(){ + super(); + this.setSize(500,500); + this.setLocation(640,500); + this.setLayout(new GridLayout(2,3)); + //this.add(panel); + this.add(TextField2); + this.add(TextField3); + + + + + //panel.setLayout(new GridLayout(3,3)); + //panel.add(TextField2); + //panel.add(TextField3); + //panel.add(TextField4); + + + } + public static void main(String[] args) { + JavaPractiseFrame Practise = new JavaPractiseFrame(); + Practise.setVisible(true); + Practise.setDefaultCloseOperation(EXIT_ON_CLOSE); + + } + } + + diff --git a/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/Jpanel1.java b/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/Jpanel1.java new file mode 100644 index 0000000..9337fb9 --- /dev/null +++ b/1401417015 AngelFlag/JavaPractiseFrame/src/javapractiseframe/Jpanel1.java @@ -0,0 +1,22 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package javapractiseframe; + +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; + +/** + * + * @author THE NET + */ +class Jpanel1 implements ActionListener{ + + @Override + public void actionPerformed(ActionEvent ae) { + System.out.println("SHTE STANE LI???????????"); + } + +} diff --git a/1401417015 AngelFlag/animals/src/animals/Animal.java b/1401417015 AngelFlag/animals/src/animals/Animal.java index 24d446e..11d6bf2 100644 --- a/1401417015 AngelFlag/animals/src/animals/Animal.java +++ b/1401417015 AngelFlag/animals/src/animals/Animal.java @@ -5,10 +5,7 @@ */ package animals; -/** - * - * @author THE NET - */ + public class Animal { public void makeNoise() { System.out.println("Grrrrrrrrr"); diff --git a/1401417015 AngelFlag/animals/src/animals/Animals.java b/1401417015 AngelFlag/animals/src/animals/Animals.java index 445ba33..9ce8bf9 100644 --- a/1401417015 AngelFlag/animals/src/animals/Animals.java +++ b/1401417015 AngelFlag/animals/src/animals/Animals.java @@ -15,10 +15,12 @@ public class Animals { * @param args the command line arguments */ public static void main(String[] args) { + Animal[] myAnimals = new Animal[5]; - Cat fluffy = new Cat(); - Dog sharo = new Dog(); + Animal fluffy = new Cat(); + Animal sharo = new Dog(); + // fluffy.onlyForCat(); myAnimals[0] = fluffy; myAnimals[1] = sharo; @@ -26,6 +28,9 @@ public static void main(String[] args) { myAnimals[0].makeNoise(); myAnimals[1].makeNoise(); + fluffy.makeNoise(); + sharo.makeNoise(); + } } diff --git a/1401417015 AngelFlag/animals/src/animals/Cat.java b/1401417015 AngelFlag/animals/src/animals/Cat.java index bdc28b5..b337f42 100644 --- a/1401417015 AngelFlag/animals/src/animals/Cat.java +++ b/1401417015 AngelFlag/animals/src/animals/Cat.java @@ -16,4 +16,8 @@ public void makeNoise() { System.out.println("Miauuuuuuu"); } +// public void onlyForCat(){ +// System.out.println("Cat Only"); +// } + } diff --git a/1401417015 AngelFlag/animals/src/animals/Dog.java b/1401417015 AngelFlag/animals/src/animals/Dog.java index 17424b1..ee199ee 100644 --- a/1401417015 AngelFlag/animals/src/animals/Dog.java +++ b/1401417015 AngelFlag/animals/src/animals/Dog.java @@ -13,7 +13,8 @@ public class Dog extends Animal{ @Override public void makeNoise() { - super.makeNoise(); + super.makeNoise(); + System.out.println("Woof"); } } diff --git a/1401417015 AngelFlag/darek19/build.xml b/1401417015 AngelFlag/darek19/build.xml new file mode 100644 index 0000000..acb9c37 --- /dev/null +++ b/1401417015 AngelFlag/darek19/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project darek19. + + + diff --git a/1401417015 AngelFlag/darek19/manifest.mf b/1401417015 AngelFlag/darek19/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/darek19/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/darek19/src/darek19/Darek19.java b/1401417015 AngelFlag/darek19/src/darek19/Darek19.java new file mode 100644 index 0000000..87ed18c --- /dev/null +++ b/1401417015 AngelFlag/darek19/src/darek19/Darek19.java @@ -0,0 +1,134 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package darek19; + +import java.util.regex.*; +public class Darek19 { + + +public static void main(String[] args) { + + String longString = " Derek Banas CA 12345 PA (412)555-1212 johnsmith@hotmail.com 412-555-1234 412 555-1234 "; + String strangeString = " 1Z aaa **** *** {{{ {{ { "; + + /* + [ ] Insert characters that are valid + [^ ] Insert characters that are not valid + \\s Any white space + \\S Any non white space + {n,m} Whatever proceeds must occur between n and m times + */ + + // Word must contain letters that are 2 to 20 characters in length + // [A-Za-z]{2,20} 0r \w{2,20} + + regexChecker("\\s[A-Za-z]{2,20}\\s", longString); + + /* + \\d Any digits 0-9 + \\D Anything not a number + {n} Whatever proceeds must occur n times + */ + + // Only 5 digits + // \\s[0-9]{5}\\s or \\d{5} + + regexChecker("\\s\\d{5}\\s", longString); + + /* + | Is used for OR clause situations + */ + + // Must start with a A or C, followed by 1 letter in brackets + // Must be a maximum of 2 characters in length + // A[KLRZ]|C[AOT] + + regexChecker("A[KLRZ]|C[AOT]", longString); + + /* + {n,} Whatever proceeds must occur at least n times + + Whatever proceeds must occur one or more times + . ^ * + ? { } [ ] \ | ( ) Characters that must be escaped or backslashed + */ + + // Grab any string that contains 1 or more ! + + regexChecker("(\\{{1,})", strangeString); + regexChecker("(\\{+)", strangeString); + + // Get anything that occurs 3 times except newline + // . Anything but newline + + regexChecker(".{3}", strangeString); + + /* + \\w Any word type character A-Z, a-z, 0-9, _ + \\W Any non word character + * Occurs zero or more times + */ + + regexChecker("\\w*", strangeString); + + regexChecker("[A-Za-z0-9._\\%-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,4}", longString); + + + // ? 0 or 1 of what proceeds it + + regexChecker("([0-9]( |-)?)?(\\(?[0-9]{3}\\)?|[0-9]{3})( |-)?([0-9]{3}( |-)?[0-9]{4}|[a-zA-Z0-9]{7})", longString); + + regexReplace(longString); + + } + + public static void regexChecker(String theRegex, String str2Check){ + + // You define your regular expression (REGEX) using Pattern + + Pattern checkRegex = Pattern.compile(theRegex); + + // Creates a Matcher object that searches the String for + // anything that matches the REGEX + + Matcher regexMatcher = checkRegex.matcher( str2Check ); + + // Cycle through the positive matches and print them to screen + // Make sure string isn't empty and trim off any whitespace + + while ( regexMatcher.find() ){ + if (regexMatcher.group().length() != 0){ + System.out.println( regexMatcher.group().trim() ); + + // You can get the starting and ending indexs + + System.out.println( "Start Index: " + regexMatcher.start()); + System.out.println( "Start Index: " + regexMatcher.end()); + } + } + + System.out.println(); + } + + public static void regexReplace(String str2Replace){ + + // REGEX that matches 1 or more white space + + Pattern replace = Pattern.compile("\\s+"); + + // This doesn't really apply, but this is how you ignore case + // Pattern replace = Pattern.compile("\\s+", Pattern.CASE_INSENSITIVE); + + // trim the string t prepare it for a replace + + Matcher regexMatcher = replace.matcher(str2Replace.trim()); + + // replaceAll replaces all white space with commas + + System.out.println(regexMatcher.replaceAll(", ")); + + } +} + + diff --git a/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java b/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java deleted file mode 100644 index 19fa35e..0000000 --- a/1401417015 AngelFlag/darekAnimal/src/darekanimal/Cats.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ -package darekanimal; - -/** - * - * @author THE NET - */ -public class Cats extends Animal{ - public String favToy = "Ball"; - public void playWith(){ - System.out.println("Yeah " + favToy); - } - - public void walkAround(){ - System.out.println(this.getName() + "stalks around then sleeps "); - } - - - public String getToy(){ - return this.favToy; -} - - public Cats(){ - - } - - public Cats(String name, String favFood, String favToy){ - super(name,favFood); - this.favToy = favToy; - } -} diff --git a/1401417015 AngelFlag/exam_feb1/build.xml b/1401417015 AngelFlag/exam_feb1/build.xml new file mode 100644 index 0000000..56d20ca --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project exam_feb1. + + + diff --git a/1401417015 AngelFlag/exam_feb1/manifest.mf b/1401417015 AngelFlag/exam_feb1/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/exam_feb1/src/exam_feb1/.LCKStudent.java~ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/.LCKStudent.java~ new file mode 100644 index 0000000..8cf019f --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/.LCKStudent.java~ @@ -0,0 +1 @@ +C:\Users\THE NET\Documents\GitHub\Java2014\1401417015 AngelFlag\exam_feb1\src\exam_feb1\Student.java \ No newline at end of file diff --git a/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Exam_feb1.java b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Exam_feb1.java new file mode 100644 index 0000000..e18a620 --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Exam_feb1.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam_feb1; + +/** + * + * @author THE NET + */ +public class Exam_feb1 { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +} diff --git a/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Person.java b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Person.java new file mode 100644 index 0000000..0a5ea07 --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Person.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam_feb1; + +/** + * + * @author THE NET + */ +public class Person { + +} diff --git a/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Student.java b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Student.java new file mode 100644 index 0000000..5c142dd --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/Student.java @@ -0,0 +1,14 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam_feb1; + +/** + * + * @author THE NET + */ +public class Student { + +} diff --git a/1401417015 AngelFlag/exam_feb1/src/exam_feb1/printInfo.java b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/printInfo.java new file mode 100644 index 0000000..9bf6259 --- /dev/null +++ b/1401417015 AngelFlag/exam_feb1/src/exam_feb1/printInfo.java @@ -0,0 +1,11 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package exam_feb1; + + +public interface printInfo { + public void printInfo(); +} diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java index 5727366..b7ce2d1 100644 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Athlete.java @@ -9,6 +9,27 @@ * * @author THE NET */ -public class Athlete { +public class Athlete extends Person{ + protected String Sport; + + public String getSport() { + return Sport; + } + + public void setSport(String Sport) { + this.Sport = Sport; + } + + public Athlete(String Sport, String name, int age){ + super(name,age); + this.Sport = Sport; + + } + + @Override + public void introduceYourself(){ + super.introduceYourself(); + System.out.println("I am an Athlete. My name is " + name + " My sport is " + Sport + " and I am " + age + " years old"); + } } diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java index b8f594e..1f77d97 100644 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Introduceable.java @@ -1,14 +1,7 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ + package oop1_myworld; -/** - * - * @author THE NET - */ + public interface Introduceable { //public int age = 40; //public static final double Pi = 3.14; diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java index 0357580..460cdb0 100644 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Oop1_MyWorld.java @@ -1,19 +1,10 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ + package oop1_myworld; -/** - * - * @author THE NET - */ + public class Oop1_MyWorld { - /** - * @param args the command line arguments - */ + public static void main(String[] args) { System.out.println("I am proud with my greatest invention PI " + Person.PI); @@ -40,8 +31,20 @@ public static void main(String[] args) { Anonymous.introduceYourself(); //System.out.println("I am a person! My name is " + Anonymous.getName() + " I am " + Anonymous.getage() + " Old"); + Person Ivan = new Person("Ivan",22); + + Ivan.introduceYourself(); + + Person Angel = new Student(); + Angel.setName("Angel"); + Angel.setAge(35); - } - + //Angel.setfNumber(facultNomer); + Angel.introduceYourself(); + Student iv40 = new Student("14040402","Iv40",33); + iv40.introduceYourself(); + Athlete Ivan4o = new Athlete("Box","Ivan",22); + Ivan4o.introduceYourself(); + } } diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java index 94f5a2a..c61301f 100644 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Person.java @@ -1,19 +1,12 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ + package oop1_myworld; -/** - * - * @author THE NET - */ + public class Person { //public String name; //public int Age; - private String name; - private int age; + protected String name; + protected int age; public static final double PI = 3.14; diff --git a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java index d8845c1..fdc1228 100644 --- a/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java +++ b/1401417015 AngelFlag/oop1_MyWorld/src/oop1_myworld/Student.java @@ -1,17 +1,10 @@ -/* - * To change this license header, choose License Headers in Project Properties. - * To change this template file, choose Tools | Templates - * and open the template in the editor. - */ + package oop1_myworld; -/** - * - * @author THE NET - */ + public class Student extends Person{ - private String fNumber; + protected String fNumber; public String getfNumber() { return fNumber; @@ -27,18 +20,19 @@ public Student(String fNumber, String name, int age) { } public Student() { - this("Test",45); - fNumber = "No facult number"; + //this("Test",45); + fNumber = "3213123112312"; } - public Student(String name,int age) { + public Student(String name,int age) { super(name,age); } + @Override public void introduceYourself(){ super.introduceYourself(); - System.out.println("I am a student. My name is: " + name + " and My fNumber is = " + fNumber); + System.out.println("I am a student. My name is: " + name + " and My fNumber is: " + fNumber + " I am " + age + " years old. "); } @Override diff --git a/1401417015 AngelFlag/tryPhp/build.xml b/1401417015 AngelFlag/tryPhp/build.xml new file mode 100644 index 0000000..12b2a24 --- /dev/null +++ b/1401417015 AngelFlag/tryPhp/build.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + Builds, tests, and runs the project tryPhp. + + + diff --git a/1401417015 AngelFlag/tryPhp/manifest.mf b/1401417015 AngelFlag/tryPhp/manifest.mf new file mode 100644 index 0000000..328e8e5 --- /dev/null +++ b/1401417015 AngelFlag/tryPhp/manifest.mf @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +X-COMMENT: Main-Class will be added automatically by build + diff --git a/1401417015 AngelFlag/tryPhp/src/tryphp/TryPhp.java b/1401417015 AngelFlag/tryPhp/src/tryphp/TryPhp.java new file mode 100644 index 0000000..3f58a1e --- /dev/null +++ b/1401417015 AngelFlag/tryPhp/src/tryphp/TryPhp.java @@ -0,0 +1,21 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ +package tryphp; + +/** + * + * @author THE NET + */ +public class TryPhp { + + /** + * @param args the command line arguments + */ + public static void main(String[] args) { + // TODO code application logic here + } + +}