Тёмный
No video :(

Calculator program Using C++ Programing 🔥 

Code Bucket HT
Подписаться 7 тыс.
Просмотров 130 тыс.
50% 1

Calculator program Using C++ Programing 🔥
➤Previous Video's▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
C++ Program To Check Number is Even Or Odd 🔥
• C++ Program To Check N...
C++ Program To Add Two Number
• C++ Program To Add Two...
➤My Gears▼▼▼▼▼▼▼▼▼▼▼
MOBILE : Realme 2 Pro
MIC : Boya M1
➤Don't Forget.........LIKE SHARE & SUBSCRIBE👍↗️
➤Thank you for watching..............@itz techer wala
➤Your Quries▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
check number is even or odd,
check number is even or odd in python,
python program to check number is even or odd,
java program to check number is even or odd,
check number is even or odd in java,
shell script to check number is even or odd,
javascript program to check number is even or odd,
write a program to check number is even or odd,
check if a number is even or odd c++,
C++,
c++ program,
c++ programs,
c++ programming language,
c++ programs for practice,
simple c++ program,
c++ programiz,
c++ program to add two numbers,
c++ programming examples

Опубликовано:

 

27 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 86   
@himanshu_tyd
@himanshu_tyd 10 месяцев назад
Theme name: Panda 🐼 Editor: VS Code
@derklausi2095
@derklausi2095 10 месяцев назад
🎶
@ikeben9
@ikeben9 11 месяцев назад
Nice way to learn switch case
@DrizzyB
@DrizzyB Год назад
Watching ppl code is surprisingly helpful
@codebucketht
@codebucketht Год назад
there is no need to include
@IlliaZhdanov
@IlliaZhdanov Год назад
... using namespace std; is the worst thing in C++. So i'll click off.
@WadDeIz
@WadDeIz Год назад
​@@IlliaZhdanovI hate it when people "using namespace std"
@IlliaZhdanov
@IlliaZhdanov Год назад
@@WadDeIzme too. Worst C++ feature
@masgerentertainment
@masgerentertainment 11 месяцев назад
​@@WadDeIzwhy? i think that is better than writing std:: in multiple lines
@The.King.12
@The.King.12 11 месяцев назад
This is a small scale program so std namespace being used is not a problem😂
@jaypatel0088
@jaypatel0088 10 месяцев назад
Please use words like operand 1,operand 2 and operation, instead of just a, b, c..
@canoshit
@canoshit 7 месяцев назад
isnt a c library not a cpp lobrary
@Kanak_Bodkhe
@Kanak_Bodkhe Год назад
Me who made my calculator with if else 😂
@tanishqb385
@tanishqb385 10 месяцев назад
you can use if else too, in some cases switch is more helpful but the basic logic is the same as if else
@samuca101
@samuca101 10 месяцев назад
It works too, but switch case will be way more efficient.
@canoshit
@canoshit 7 месяцев назад
@@tanishqb385switch statement corrupts my files in vscode for some reason
@dragone521
@dragone521 7 месяцев назад
If in use #include you can use sin() or cos() and pow()
@brunovidal-pw8it
@brunovidal-pw8it 10 месяцев назад
i'm dying.
@nothingmog
@nothingmog 9 месяцев назад
Lmao it's easy when you learn the basics
@insertnamehere6211
@insertnamehere6211 9 месяцев назад
If you want to get deeper into calculations with integers, try to write your own integer. It will definitely shows you what happens behind it and you will learn how to write your own operators. Also it will confront you with topics like optimization and standards for fixed point arithmetics. Please keep in mind that the normal integer will probably still be better even if you have optimized tf out of yours so you shouldn’t really use them in your own projects, never then less it will teach you a shit tone of things depending on your level.
@el_psy_canguri
@el_psy_canguri 4 месяца назад
Whatdo you mean write your integer?
@insertnamehere6211
@insertnamehere6211 4 месяца назад
@@el_psy_canguri write an own integer
@el_psy_canguri
@el_psy_canguri 4 месяца назад
@@insertnamehere6211 what do you mean by that, i still dont understand, how do you write your own integer
@insertnamehere6211
@insertnamehere6211 4 месяца назад
@@el_psy_canguri you do it by creating for example a class named „myInt“ then you implement how the data in the int gets stored in mem, then you create the operators and help methods required for this kind of project and then you have it. It won’t be as good as the real int probably but it will give you lots of knowledge.
@insertnamehere6211
@insertnamehere6211 4 месяца назад
@@el_psy_canguri ok so apparently my comment wasn’t send or something but I will explain it more detailed. You can write a class, called for example „myInt“ there you proceed to build a basic logic like some helper methods, storage for the number itself preferably in bytes as you then can calculate it effectively via logic. Next you can write define the operators. (C++ example: „myInt operator+(myInt num);“) You can then proceed to further add support for operators and stuff but if you build like not an overly complex datatype you can learn a lot about the programming language you are using and how it is working. Sorry again for the late message, I thought I already answered.
@MINECANGI
@MINECANGI 9 месяцев назад
you should never include C headers on C++ files, use instead, and you didn't use the stdio functions so you can just remove it, also the "using namespace std;" is a bad practice, and, try to return values for a more efficient code. nice vid btw 👍
@canoshit
@canoshit 7 месяцев назад
exactly
@naradprasad941
@naradprasad941 6 месяцев назад
@seemashaikh3546
@seemashaikh3546 Год назад
I can do in 15 lines using recursive and can take any number of input user wants with operators Still for starting we have also done same thing
@shlok7281
@shlok7281 11 месяцев назад
care to explain how do I take any no user of inputs
@kubixcr2648
@kubixcr2648 10 месяцев назад
what program are you using ?
@Barrtholomeww
@Barrtholomeww 11 месяцев назад
its actally really easy with a bit of repetitive if and else if by declarin a char variable and use it to determine the operator
@shlok7281
@shlok7281 11 месяцев назад
code would be too long then
@taured_gamez
@taured_gamez Год назад
👍
@cinemaclips2710
@cinemaclips2710 10 месяцев назад
In which site u r writing this code and executing plz tell ..
@codebucketht
@codebucketht 10 месяцев назад
vscode editor
@devrajking8670
@devrajking8670 Год назад
🔥🔥🔥🔥👍
@davidsantoso7960
@davidsantoso7960 10 месяцев назад
What's the name of the song?
@_G_R_
@_G_R_ 9 месяцев назад
It’s good that you changed at least a little what is on Microsoft’s website. damn programming genius
@alicemartin1311
@alicemartin1311 Год назад
Sir i made the same thing as I'm the very beginner so how can i give the input here
@codebucketht
@codebucketht Год назад
You can use "cin>>" to get the input from ther user.
@alicemartin1311
@alicemartin1311 Год назад
@@codebucketht That wasn't the actual question actually i was using other software for coding
@mi30044
@mi30044 10 месяцев назад
0:00
@BOSS55
@BOSS55 Год назад
Bhai theme bahut badhiya lag Raha hai Kaun sa extension use Kiya hai
@codebucketht
@codebucketht Год назад
It's panda 🐼 theme
@tomasvideo7216
@tomasvideo7216 10 месяцев назад
What kind of theam do you use in vs?
@lemonroblox-yt
@lemonroblox-yt Год назад
Nice
@WadDeIz
@WadDeIz Год назад
Use floats or doubles
@kevin3495
@kevin3495 11 месяцев назад
doubles for bigger number
@WadDeIz
@WadDeIz 10 месяцев назад
​@@kevin3495ye
@NwangwuFrancis-ym5zw
@NwangwuFrancis-ym5zw 11 месяцев назад
what application is that?
@user-ft3wm4wx3x
@user-ft3wm4wx3x 9 месяцев назад
global a,b
@nottele870
@nottele870 11 месяцев назад
code: #include long long a, b; using namespace std; void getData() { std::cout a >> b; } void Calculator() { char Operators; std::cout Operators; switch (Operators) { case '+': { std::cout
@islammatkarimov2353
@islammatkarimov2353 11 месяцев назад
were you high when you wrote this? you already declare namespace standard and still typing std in each line lol?
@77838jsjjj
@77838jsjjj 11 месяцев назад
😂
@PaulSir_PlayZ
@PaulSir_PlayZ 11 месяцев назад
@@islammatkarimov2353 copied from chat gpt
@nottele870
@nottele870 6 месяцев назад
@@PaulSir_PlayZ Nope
@ballabadr3572
@ballabadr3572 4 месяца назад
Op "/ " return float not int!
@jideveloper1164
@jideveloper1164 9 месяцев назад
Keyboard used?
@abhishekpal9226
@abhishekpal9226 9 месяцев назад
Background music name?
@SaurabhSingh-jd2rx
@SaurabhSingh-jd2rx 9 месяцев назад
Bhai sirf + - ni hota h Percentage root sab bhi hota h banna h to pura acha se banao 😂😂
@hassaniq0777
@hassaniq0777 11 месяцев назад
There's no need for the 2nd void function lmao
@pje_
@pje_ 11 месяцев назад
bro tryharding hard to type fastest in the world 💀
@mobaraksaripadak6006
@mobaraksaripadak6006 Год назад
What apps are those?
@adityadahiya7800
@adityadahiya7800 10 месяцев назад
vs studio
@himadriii373
@himadriii373 Год назад
Is it an application software;?
@codebucketht
@codebucketht Год назад
Nop
@keyseemontana6381
@keyseemontana6381 4 месяца назад
Global variables - is very bed
@dylanburch2719
@dylanburch2719 10 месяцев назад
Why the hell are you using the fastest typing audio ever but coding so slowly
@msinkon7225
@msinkon7225 10 месяцев назад
Bro theme name
@codebucketht
@codebucketht 10 месяцев назад
panda
@XenialXerus
@XenialXerus Год назад
Which aap he used?
@codebucketht
@codebucketht Год назад
It's Pc software called 'Vs code editor '
@Kanak_Bodkhe
@Kanak_Bodkhe Год назад
​@M.r.b.e.a.s.t.H.i.n.d.igoogle pe search karlo
@CowOfTheNile
@CowOfTheNile 11 месяцев назад
this clicking sound makes me want to die
@cursedfdp
@cursedfdp 11 месяцев назад
Yo wtf is this speed up or bro's typing 100 words per second
@NurvnUWU
@NurvnUWU 11 месяцев назад
0:00
Далее
15 Years Writing C++ - Advice for new programmers
4:04
SIGMA ENVY IS UNTOUCHABLE 🔥 #insideout2
00:10
Просмотров 2,8 млн
VS Code Setting: git.untrackedChanges
2:25
BINARY Search Program IN C++ @codebucketht 🔥🔥
0:58
LINEAR Search Program Using C++  🔥🔥
0:59
Просмотров 3,3 тыс.
SIGMA ENVY IS UNTOUCHABLE 🔥 #insideout2
00:10
Просмотров 2,8 млн