Лабораторная работа по "Программированию"
Автор: aliki • Май 25, 2023 • Лабораторная работа • 3,079 Слов (13 Страниц) • 109 Просмотры
МИНИСТЕРСТВО ОБРАЗОВАНИЯ И НАУКИ КЫРГЫЗСКОЙ РЕСПУБЛИКИ
ИНСТИТУТ ИННОВАЦИОННЫХ ПРОФЕССИЙ
Кафедра: Информационно-коммуникационных
Технологий и радиоэлектроники
Лабораторная работа №1
Дисциплина: Программирование
Проверил: Галмуратбеков А.
Группа: ПОВТ 2-21
Выполнила: Сарыбаев А.
Бишкек 2023
- Условный оператор if…else
public class Main
{
public static void main(String[] args) {
int x = 30;
if(x == 10){
System.out.println("Значение Х = 10");
}else if (x ==20){
System.out.println("Значение Х = 20");
}else if (x == 30){
System.out.println("Значение Х = 30");
}else {
System.out.println("Это оператор else"); }
}
}[pic 1]
- Цикл
int x = 10;
int res = ((x + 1) * x) / 2;
System.out.println ("res=" + res);
Оператор цикла While: [pic 2]
int x = 10;
while( x < 15) {
System.out.println("Значение х:" + x);
x++;
System.out.println("\n"); }
Оператор цикла For
for (int x = 10; x < 15; x = x+1){
System.out.println("Значение х:" + x);
System.out.println("\n"); }[pic 3]
- Среднее значение числа
int a = 7;
int b = 6;
int c = 11;
int sum = a+b+c;
System.out.println(sum);
int mid = sum/3; [pic 4]
- Находим процент
int a = 10;
int b = 18;
int sum1 = a*40/100;
int sum2 = b*47/100;
System.out.println("res=" +sum1+ "\n res=" +sum2);
System.out.println (mid);[pic 5]
- Переменные
int a = 5;
int b = 7;
int sum = a + b;
System.out.println(sum);
int a = 50;
int b = 20;
int umn = a*b;
int del = a/b;
System.out.println("res="+umn+ "\n res=" +del);
int a = 24;
int b = 8;
int c = 16;
int s = (a*b)/c+b;
System.out.println ("res=" +s);[pic 6][pic 7][pic 8]
- Операторы сравнения
int x = 11;
if (x > 10){
x = x + 100;
}
else if (x < 10){
x = x - 30;
}
System.out.println( "res=" +x);[pic 9]
int a = 4%2;
int b = 5%2;
System.out.println("res=" +a);
System.out.println("res=" +b);[pic 10]
- Касса
package kg.aken;
import java.util.Scanner;
public class Main {
//RATE PRICES RESOURCE
static double RUB_PRICE = 1.30;
static double EUR_PRICE = 96.42;
static double DOLLAR_PRICE = 86.34;
static double LIMIT_FOR_CASHBACK_KGS = 1000;
static double PERCENT = 10;
public static void main(String[] args) {
//2 – Version
Scanner scanner = new Scanner(System.in);
//USERS DATABASE
String aiday = "a";
String aidayPassword = "12345";
//PRODUCT DATABASE WITH PRICES
show("I");
show("------------------------------------------");
double penPrice = 22.45;
double pencilPrice = 12.34;
double bagPrice = 254.12;
double bookPrice = 145.56;
show("Авторизация:");
show("Ваш логин?:");
String userLogin = scanner.nextLine();
show("Ваш пароль?:");
String userPassword = scanner.nextLine();
if (userLogin.equals(aiday) && userPassword.equals(aidayPassword)) {
show("Добро пожаловать: " + aiday);
show("Цена Ручки: " + penPrice + " СОМ в KGS");
show("Цена Карандаш: " + pencilPrice + " СОМ в KGS");
show("Цена Сумки: " + bagPrice + " СОМ в KGS");
show("Цена Книги: " + bookPrice + " СОМ в KGS");
show("------------------------------------------");
show("Введите количество Ручек:");
double countOfPen = scanner.nextDouble();
show("Введите количество Карандаша:");
double countOfPencil = scanner.nextDouble();
show("Введите количество Сумки:");
double countOfBags = scanner.nextDouble();
show("Введите количество Книг:");
...