scientific calculator using C#
How can we use two mathematical function on a single button like we have it on real scientific calculator using shift button we can use tan and inverse on a single button so how to get shift operation ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Krishna Rajput SinghPosted Oct 28, 2015, 5:10 PM
Hello Aditi Aryan thanks for writing below links i hope helpful for you...:)
http://dotnetdevelopernetwork.com/scientific-calculator-c-tutorial-2/
http://adf.ly/4818450/banner/http://visualpedia.blogspot.com/2012/12/scientific-calculator-in-c-windows-form.html
https://youtu.be/POJG8e1JTXM?list=UUwDvtKdkid3PwJ7T6xweUfA
Jean-Claude ColettePosted Oct 28, 2015, 3:24 PM
Afzaal Ahmad ZeeshanPosted Oct 28, 2015, 3:09 PM
if(shiftPressed) {useShiftedValue();
} else {
useDefaultValue();
}