Laba
This commit is contained in:
commit
8b52d689ea
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_19" default="true" project-jdk-name="19" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/lab1.iml" filepath="$PROJECT_DIR$/lab1.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
Binary file not shown.
|
@ -0,0 +1,60 @@
|
||||||
|
import java.util.Scanner;
|
||||||
|
import java.util.InputMismatchException;
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Scanner scan = new Scanner(System.in);
|
||||||
|
System.out.println("Введіть значення n:");
|
||||||
|
double n = 0;
|
||||||
|
try {
|
||||||
|
n = scan.nextDouble();
|
||||||
|
} catch (InputMismatchException e) {
|
||||||
|
System.out.println("Число введене не вірно");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
System.out.println("Введіть значення m:");
|
||||||
|
double m = 0;
|
||||||
|
try {
|
||||||
|
m = scan.nextDouble();
|
||||||
|
} catch (InputMismatchException e) {
|
||||||
|
System.out.println("Число введене не вірно");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("Введіть значення a:");
|
||||||
|
double a = 0;
|
||||||
|
try {
|
||||||
|
a = scan.nextDouble();
|
||||||
|
} catch (InputMismatchException e) {
|
||||||
|
System.out.println("Число введене не вірно");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
System.out.println("Введіть значення b:");
|
||||||
|
double b = 0;
|
||||||
|
try {
|
||||||
|
b = scan.nextDouble();
|
||||||
|
} catch (InputMismatchException e) {
|
||||||
|
System.out.println("Число введене не вірно");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
if (a > n) {
|
||||||
|
System.out.println("Значення n має бути більшим або рівним a");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
if (b > m) {
|
||||||
|
System.out.println("Значення m має бути більшим або рівним b");
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
double s1 = 0;
|
||||||
|
double s2 = 0;
|
||||||
|
|
||||||
|
for (double i = a; i <= n; i++) {
|
||||||
|
for (double j = b; j <= m; j++){
|
||||||
|
// оскільки C дорівнює 0, то можна скоротити i
|
||||||
|
s1=s1+(1/j);
|
||||||
|
}
|
||||||
|
s2=s2+s1;
|
||||||
|
}
|
||||||
|
System.out.println("Результат:" + s2);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue