HOW TO WRITE A PROGRAM IN VB TO FIND LARGEST NUMBER



hello दोस्तों आज मैं Visual basic के एक प्रोग्राम के बारे में बताने वाला हूँ जिसमें मैं आपको किन्हीं तीन Inputed numbers के सबसे बड़े नंबर को कैसे प्रिंट कराना है या display कराना है उसके बारे में बताने वाला हूँ इस largest number को find करने वाले प्रोग्राम में मैने If , else statment का प्रयोग किया है आप चाहें तो इसकी जगह पर nested if else का प्रयोग करके भी बना सकते हैं।

PROGRAM FOR FINDING THE LARGEST NUMBER



code:


इस प्रकार होगा तो चलिए शुरू करते हैं coding.
Private sub command1_click()
Dim a,b,c as integer
a = val(text1.text)
b = val(text2.text)
c = val(text3.text)
If (a>b) And (a>c)then
Text4.text = "num 1 is greater"
Else
If (b>a) And (b>c)then
Text4.text = "num 2 is greater"
Else
Text4.text = "num 3 is greater"
End if
End if
End sub

इस प्रकार किसी तीन इनपुटेड numbers में से largest number प्राप्त करने के लिए प्रोग्राम इस प्रकार होगा इसका आउटपुट आपको form में डिजाइन किए हुए टेक्स्ट बॉक्स में मिलेगा। इसका design आप अपने अनुसार कर सकते हैं।
धन्यवाद!
If you like this type information then share it for support me.

अन्य जानकारी

Function kya hai

वर्ड प्रोसेसिंग फीचर्स इन हिंदी




Khilawan
Hi I am Khilawan founder of this blog and i live in a small Village and i am started blogging in 2017 last month and the date is 6/12/2017 and learning today..

Related Posts

Post a Comment

Subscribe Our Newsletter