C#でネストされたifステートメントをどのように使用しますか?
1つのifまたはelseifステートメントを別のifまたはelseifステートメント内で使用します。ネストされたifステートメントの構文は次のとおりです-
if( boolean_expression 1) { /* Executes when the boolean expression 1 is true */ if(boolean_expression 2) { /* Executes when the boolean expression 2 is true */ } }
以下は、C#でのネストされたifステートメントの使用法を示す例です。ここでは、2つの条件をチェックする2つのifステートメントがあります。
if (a == 5) { /* if condition is true then check the following */ if (b == 10) { /* if condition is true then print the following */ Console.WriteLine("Value of a is 5 and b is 10"); } }
これが完全な例です。
例
using System; namespace Demo { class Program { static void Main(string[] args) { //* local variable definition */ int a = 5; int b = 10; /* check the boolean condition */ if (a == 5) { /* if condition is true then check the following */ if (b == 10) { /* if condition is true then print the following */ Console.WriteLine("Value of a is 5 and b is 10"); } } Console.WriteLine("Exact value of a is : {0}", a); Console.WriteLine("Exact value of b is : {0}", b); Console.ReadLine(); } } }
出力
Value of a is 5 and b is 10 Exact value of a is : 5 Exact value of b is : 10
-
ExcelでIfステートメントとNestedIfステートメントを使用する方法
数式でかなり使用するExcel関数の1つは、 IFです。 関数。 IF 関数は、論理条件をテストし、論理条件が TRUEを返すかどうかに応じて2つの異なる結果を生成するために使用されます。 またはFALSE 。 例として、以下の携帯電話の売上高の表を使用してみましょう。ここからサンプルファイルをダウンロードできます。 単一条件のIF関数 手数料を計算する必要があるシナリオを考えてみましょう。 販売が行われた場所に応じて、販売行ごとに(列D )。 米国で販売された場合 、手数料 は10%です。それ以外の場合、残りの場所には手数料がかかります。 5%の。 セルF2に入力する必要
-
アンドロイドリストビューでネストされた配列を使用する方法は?
この例は、Androidリストビューでネストされた配列を使用する方法について示しています。 ステップ1-AndroidStudioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2-次のコードをres/layout / activity_main.xmlに追加します <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://sc