Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> C#

सी # प्रोग्राम दो पूर्णांक स्वीकार करने और शेष को वापस करने के लिए

सबसे पहले, दो नंबर सेट करें।

int one = 250;
int two = 200;

अब उन नंबरों को निम्न फ़ंक्शन में पास करें।

public int RemainderFunc(int val1, int val2) {
   if (val2 == 0)
   throw new Exception("Second number cannot be zero! Cannot divide by zero!");
   if (val1 < val2)
   throw new Exception("Number cannot be less than the divisor!");
   else
   return (val1 % val2);
}

ऊपर हमने दो शर्तों के लिए जाँच की है यानी

  • यदि दूसरी संख्या शून्य है, तो एक अपवाद होता है।
  • यदि पहली संख्या दूसरी संख्या से कम है, तो एक अपवाद होता है।

शेष दो संख्याओं को वापस करने के लिए, निम्नलिखित पूरा कोड है।

उदाहरण

using System;
namespace Program {
   class Demo {
      public int RemainderFunc(int val1, int val2) {
         if (val2 == 0)
         throw new Exception("Second number cannot be zero! Cannot divide by zero!");
         if (val1 < val2)
         throw new Exception("Number cannot be less than the divisor!");
         else
         return (val1 % val2);
      }
      static void Main(string[] args) {
         int one = 250;
         int two = 200;
         int remainder;
         Console.WriteLine("Number One: "+one);
         Console.WriteLine("Number Two: "+two);
         Demo d = new Demo();
         remainder = d.RemainderFunc(one, two);
         Console.WriteLine("Remainder: {0}", remainder );
         Console.ReadLine();
      }
   }
}

आउटपुट

Number One: 250
Number Two: 200
Remainder: 50

  1. समय की विषम संख्या होने वाली संख्या का पता लगाने के लिए जावा प्रोग्राम

    विषम संख्या में बार-बार आने वाली संख्या ज्ञात करने के लिए, जावा कोड इस प्रकार है - उदाहरण public class Demo {    static int odd_occurs(int my_arr[], int arr_size){       int i;       for (i = 0; i < arr_size; i++){          int coun

  1. तीन अंकों को स्वीकार करने और अंकों से सभी संभावित संयोजनों को प्रिंट करने के लिए पायथन प्रोग्राम

    जब उपयोगकर्ता से इनपुट लिए जाने पर अंकों के सभी संभावित संयोजनों को प्रिंट करना आवश्यक होता है, तो नेस्टेड लूप का उपयोग किया जाता है। नीचे उसी का एक प्रदर्शन है - उदाहरण first_num = int(input("Enter the first number...")) second_num = int(input("Enter the second number...")) thi

  1. दो नंबर पढ़ने और उनके भागफल और शेष को प्रिंट करने के लिए पायथन प्रोग्राम

    जब दो संख्याओं को पढ़ना और भागफल और शेष को विभाजित करने पर प्रिंट करना आवश्यक हो, तो // और % ऑपरेटरों का उपयोग किया जा सकता है। नीचे उसी का एक प्रदर्शन है - उदाहरण first_num = int(input("Enter the first number...")) second_num = int(input("Enter the second number...")) print(&qu