Java Bangla Tutorials 20 : Unary operator | increment and decrement

preview_player
Показать описание
➡️ In this video, I will discuss unary operators in java.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:15) unary plus and unary minus
⌨️ (03:40) increment and decrement operators
⌨️ (11:50) 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
Рекомендации по теме
Комментарии
Автор

আজ ২০২০ সালের জুনের ২৪ তারিখ। এই তিন বছরের মধ্যেও ইউটিউবে বাংলায় এতো সুন্দর জাভা টিউটোরিয়াল কেউ বানাতে পারেনি। এক কথায় বলব বেস্ট। আপনার মতো মানুষদের জন্যই একদিন বাংলাদেশ আইটি সেক্টরে সেরা কিছু করতে পারবে।❤❤❤

programmertony
Автор

Thank u sir, ei vedio ta dekhar por e unary operators er concept ta clear hoe6e, sotti helpful 😊

puja
Автор

অসাধাররন। এত সুন্দর করে কেউ বুঝাতে পারে না

onlybindas
Автор

Sir, you are the best teacher of programming language, I have ever seen in real life & as well as in youtube!!! Antorik dhonyobad apnake eto sundor kore, eto sposto dharona diye programming er video upload korar jonno, vison upokar peyechhi ami, apnar video lectures gulo na pele hoytoh ejibone amr mathay java dhukto na ar!

theloveexplorer
Автор

best powerpoint work brother...anyone can easily understand ...lots of respect and love from New York...Allah bless you

rana_ny
Автор

thank u soo much sir.. age increment & decrement a khub jhamela korto...apnar kach teke oneek sohoj vabe shikhte parchi..thnxx

musferatuljannat
Автор

best teacher, eto easily concept clear ei first holo amar. I need more videos about different java projects

afifaadil
Автор

vaia apni ato valo class nen je sms na diya parlam na . prothom are dike ami oneck java voi paitam apner class gula kore ami oneck valo bujte partece apni ato detail a sob kisu bolan je sob mone thake thank you so much vaiya

mohosinaakter
Автор

Sir apni darun explain karen
Akdom darun

Love from India😍😍

funforyou
Автор

Excellent teaching indeed. Real-life example in each tutorial can be more understandable for the beginner. thanks

jahangirkabir
Автор

Explain ato sundhor, chomotker, Excellent...
sir Android er Tutorial passina tai Java daksi,
aponar opekkhay, asi Request plz

uzzalcontact
Автор

May Allah give you the best Jaja(jajakallahu-khairan) for all tutorials. So far the best tutorial I have ever seen.

absnmg
Автор

Vai, you're the best instructor I've ever found on youtube. even though I don't have any pre-existing knowledge in programming as I'm not a CSE background, I get your instruction in just 1st shot, & that's made me your virtual obedient student...

mahmudhasan
Автор

It's really fixable  tutorial   .thanks

sincelife
Автор

Ami to sir apnar kach theke akta Free Store💾 paigechi sob kichu free Ami polytechnic a pori amar all frn apnar video dekhe
khub sundor vabe bujte pari sir 😍😍😍 asa kori Python niye video pabo samne 💾

maker-shihab
Автор

ভাই আপনার ভিডিও গুলা অসাধারণ। আচ্ছা ভাই আমার একটা প্রশ্ন হল আমি যদি এই ভিডিও গুলা ভালোভাবে শেষ করি তাহলে কি আমি গুগুল সামার অফ কোড ক্রাক করতে পারবো

NurulIslam-myci
Автор

public class UnaryOperator {
public static void main(String[] args) {
int x = 10;
int result, y;


result = +x;// result = 10
System.out.println("result = "+result);

y = x++;// y = 10
System.out.println("Y = "+y);

y = x;// y = 11
System.out.println("Y = "+y);

y = x--;// y = 11
System.out.println("Y = "+y);

y = x; // y = 10
System.out.println("Y = "+y);

y = --x; // y = 9
System.out.println("Y = "+y);

y = x;// y = 9
System.out.println("Y = "+y);


}

}

NotForHacking
Автор

package day1;

import java.util.Scanner;
public class UnaryOperator {
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
int x, y;
System.out.print("Enter any number : ");
x = input.nextInt();
y=++x;
System.out.printin("y = "+y);
y=x++;
System.out.println("y = "+y);
y=--x;
System.out.println("y = "+y);
y=x--;
System.out.print("y = "+y);


}

}

elorabarua
Автор

Can anyone help me out plz. If I put bth increments first than bth decrements later, the results don't match .what shld I do?

daliafazal
Автор

package basicjava;


public class IncrementDecrement {

public static void main(String[] args) {
int x = 35;
int y;

y = --x;
System.out.println("Y = " + y);

y = x--;
System.out.println("Y = " + y);

y = ++x;
System.out.println("Y = " + y);

y = x++;
System.out.println("Y = " + y);
}

}

foysalahmed
join shbcf.ru