Java Bangla Tutorials 16 : Assignment 4 | arithmetic operators

preview_player
Показать описание
➡️ In this video, I will share the fourth java assignment. Complete the assignment as soon as possible.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:11) Assignment 4
⌨️ (01:40) outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

sir ei assignment tao complete kore fellam alhamdulillah

devtorrent
Автор

Assignment 04:

import java.util.Scanner;
public class Main {
public static void main(String[] args) {

Scanner input = new Scanner(System.in);
int phonePrice, number_of_installment, installment_per_month;

System.out.println("Phone Price 1800 Euros");
phonePrice = 1800 ;
System.out.println("Enter your number of Installment, I'll show your per month installment amount = ");
number_of_installment = input.nextInt();

installment_per_month = phonePrice / number_of_installment;
System.out.println("Your per month installment amount : "+installment_per_month+ "euros");


}
}

Thank You, Sir

tanvirshakil_yt
Автор

Thanks a lot Sir, Assignement 4 is done!
package AssignmentsJava;

import java.util.Scanner;
public class Assignment4 {
public static void main(String[] args) {
// create a program to create number of installment per month
Scanner input = new Scanner(System.in);

int phonePrice = 1800;
int numberOfInstallment, installmentPerMonth;
System.out.print("Enter Number of Installment: ");
numberOfInstallment = input.nextInt();
installmentPerMonth = phonePrice / numberOfInstallment;
System.out.print("Monthly Installment: " + installmentPerMonth + " euro");

}

}

BlueSky
Автор

Assignment 4 Done

import java.util.Scanner;
// Create a program to calculate installment amount for per month
public class Assignment4 {
public static void main(String[] args) {

try (Scanner input = new Scanner(System.in)) {
int phonePrice = 1800; // 1800 euros
int numberOfInstallment, installmentPerMonth;

System.out.print("Enter Number of installments : ");
// get number of installments from user
numberOfInstallment = input.nextInt();

// calculate installment amount for per month
installmentPerMonth =


System.out.println("Monthly installment Amount: "+installmentPerMonth + " euros");
}

}
}

md.imonkhan
Автор

public class assignment4 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Number of installments is : ");
int numberOfInstallment = sc.nextInt();

int phonePrice = 1800;
int installmentPerMonth = phonePrice / numberOfInstallment;
System.out.println("Monthly installment Amount: "+installmentPerMonth + " euros");

}

}

MdMahmudulHasan-wsgf
Автор

Assignment4

package javaapplication9;

import java.util.Scanner;

public class Assignment4 {
public static void main(String[] args) {
int phoneprice=18000;
System.out.println("phone price is = "+phoneprice);
Scanner input=new Scanner(System.in);
System.out.println("enter the number of installment : ");
int istalnumber, instalmentpermonth;
istalnumber=input.nextInt();

per month = "+instalmentpermonth);

}
}
Output

phone price is = 18000
enter the number of installment :
12
instalment per month = 1500

milisultanabiswas
Автор

Assignment 4:

import java.util.Scanner;

public class Assignment4 {
public static void main(String[] args){
Scanner input = new Scanner(System.in);
int phonePrice = 1800;
int numberOfInstallment, installmentPerMonth;

System.out.print("Number of Installments: ");
numberOfInstallment = input.nextInt();

installmentPerMonth = phonePrice / numberOfInstallment;
System.out.print("Monthly Installment Amount: "+installmentPerMonth+" euros");
}
}

Thank you very much, Sir!

HamidaAkhterChowdhury
Автор

Assignment 4 :

import java.util.Scanner;

public class Assignment4 {

public static void main(String[] args) {

Scanner myInput = new Scanner(System.in);

int phonePrice = 1800 ; // 1800 euros
int numberofInstallment, installmentPerMonth;

System.out.print("Enter numberofInstallment : ");
numberofInstallment = myInput.nextInt();
System.out.println("Number of Installment : " + numberofInstallment);

installmentPerMonth = phonePrice / numberofInstallment;

System.out.println("Per Month Installment : " + installmentPerMonth);


}

}

shuvoA
Автор

/*
Assingment of Arithmetic Operators. Given by Anisul Islam Sir.
*/
package practice;
import java.util.Scanner;
public class Assingment4 {
public static void main(String[] args){
Scanner phone = new Scanner(System.in);
double price, month, installment;
//price = Phone price
//payment = Installmant Per month
System.out.print("Phone Price = ");
price = phone.nextInt();
System.out.print("\n");
System.out.print("You have to pay at least in time of 12 month. ");
System.out.print("How long you wanna take? please(month) = ");
month = phone.nextInt();
System.out.print("\n");
installment = price/month;
System.out.print("The amount of your installment for per month is : "+installment);
System.out.print("$");
System.out.print("\n");
System.out.print("Submitted by 'Ahsan Habib' ");
}
}

AhsanHabib-etzc
Автор

sir, I am a new learner . very helpfull your class. my 4 assignment is done ....

import java.util.Scanner;

// Create a program to calculate installment amount for per month
public class Assignment4 {
public static void main(String[] args) {

try (Scanner input = new Scanner(System.in)) {

int phonePrice = 1800; // 1800 euros
int numberOfInstallment, installmentPerMonth;

System.out.print("Number of installments?: ");
// get number of installments from user
numberOfInstallment = input.nextInt();

// calculate installment amount for per month
installmentPerMonth = phonePrice / numberOfInstallment;

System.out.println("Monthly installment Amount: "+installmentPerMonth + " euros");
}

}
}

codelover
Автор

package Assignment4;
//Assignment 4

import java.util.Scanner;

public class arithmeticOperators {
public static void main(String[] args) {

Scanner input = new Scanner(System.in);
double phonePrice = 1800;
double numberOfInstallment, installmentPerMonth;

System.out.print("Enter Number Of Installment : ");
numberOfInstallment = input.nextDouble();

installmentPerMonth = phonePrice / numberOfInstallment;
System.out.println("Monthly Installment Amount : "+installmentPerMonth+" Euros");

}
}

sumonkhan-ytpv
Автор

Assignment 4 (DONE)

package trial;
import java.util.Scanner;

public class Main {
public static void main(String[] args) {
try (Scanner input = new Scanner(System.in)) {
int phonePrice = 1800; // 1800 euros
int numberOfInstallment, installmentPerMonth;

System.out.print("Number of installments? ");
// get number of installments from user
numberOfInstallment = input.nextInt();

// calculate installment amount for per month
installmentPerMonth =


System.out.println("Monthly installment Amount: "+installmentPerMonth + " euros");
}
}

}

higurudematsu
Автор

Assignment 4 is Completed


public class Assinment4 {

public static void main(String[] args) {

Scanner input = new Scanner(System.in);

int pp=1800;
int ins_month, ins_amount;

System.out.print("installment Per Month : ");
ins_month=input.nextInt();

ins_amount=pp/ins_month;

System.out.println(" \nCalculator Result ");



System.out.println("Total installment per mounth : "+ins_amount+" euros");






}



}

mdrukon
Автор

package FirstCode;
import java.util.Scanner;
public class Arethmetic {
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
int phonePrice = 1800;
int numberOfInstallment, installmentPerMonth;
System.out.print("Number of installment: ");
numberOfInstallment = input.nextInt();

installmentPerMonth = phonePrice / numberOfInstallment;

System.out.println("Monthly Installment Amount: "+installmentPerMonth+" euros");
}

}

shakibhasan
Автор

import java.util.Scanner;
public class installmentCalculate {
public static void main(String[] args) {
Scanner input= new Scanner(System.in);
int month, result, price=1800;
System.out.println("Desired installment month: ");
month= input.nextInt();
result= price/month;
System.out.println("Your monthly EMI: "+ result);
}
}

MehadiLifeStyle
Автор

package assignment4;

import java.util.Scanner;
// Create a program to calculate installment amount for per month
public class Assignment4 {
public static void main(String[] args) {

try (Scanner input = new Scanner(System.in)) {
int phonePrice = 1800; // 1800 euros
int numberOfInstallment, installmentPerMonth;

System.out.print("Number of installments?: ");
// get number of installments from user


// calculate installment amount for per month

installmentPerMonth =
System.out.println("Monthly installment Amount: "+installmentPerMonth + " euros");
}

}
}

rasha
Автор

Assignment 4:
Code:
import java.util.Scanner;

public class Assignment4 {
public static void main(String[] args) {

Scanner input = new Scanner(System.in);

int phonePrice = 1800; // 1800 euros.
int numberOfInstallment;
double installmentPerMonth;

System.out.print("Give a choice of installment: ");
numberOfInstallment = input.nextInt();
installmentPerMonth =
System.out.println("Monthly installmenmt amout: "+installmentPerMonth+(" Euros."));

}
}




Happy Coding.
😇

ShimantoKumar-uu
Автор

Assignment 4:

import java .util. scanner ;
public class main{
public static void main (string[] args){
scanner input =new scanner (system.in);

system. out. print("Enter the phone price :'');
int price =input. nextInt();

system. out. print(''Enter the number of installment:'')
int number of installment=input. next Int();

int installment permonth=price/number finstallment;
system. out. print(''Monthly installment amount is''+ installment permonth+''euros'');
installment permonth+''euros'');
}
}

jahidulislamislam-hs
Автор

Assignment 4 done

package Assignement_4;
import java.util.Scanner;
public class Installment {

public static void main(String[] args) {

try{
Scanner input = new Scanner(System.in);
int PhonePrice = 1800;
int numberOfInstallment, InstallmentPerMonth;

System.out.print("Number Of Installment = ");
numberOfInstallment = input.nextInt();

InstallmentPerMonth = PhonePrice / numberOfInstallment;

per month = "+InstallmentPerMonth);
}catch(Exception e){
System.out.println(e);
}



}
}

itssensi
Автор

package PT;

import java.util.Scanner;


public class Assigment4 {

public static void main(String[]args){

Scanner input =new Scanner(System.in);{

}

int phonePrice=1000;
int numberOfInstallment, installmentPerMonth;

System.out.print("Enter Number Of Installment");
numberOfInstallment = input.nextInt();


installmentPerMonth = phonePrice / numberOfInstallment;
System.out.print("Monthly Installment: " + installmentPerMonth + " euro");
}
}

MdTonmoyAhamed-puyb