Cプログラミング
 Computer >> コンピューター >  >> プログラミング >> Cプログラミング

級数の最初のN項(0.25、0.5、0.75、…)を分数表現で出力します


シリーズを印刷するまでの数に相当するNを入力します

Input : N=5
Output : 0 ¼ ½ ¾ 1

アルゴリズム

START
Step 1 -> declare start variables as int num , den, i, n
Step 2 -> input number in n
Step 3 -> Loop For from i to 0 and i<n and i++
   Outer If i%2=0
      Inner IF i%4=0
         Set num=i/4 and den=0
      End Outer IF
      Else
         Set num=i/2 and den=2
      End Else
   End Outer IF
   Else
      Set num = I and den = 4
   End Else
   If den != 0
      Print num and den
   End IF
   Else
      Print num
   End Else
Step 4 -> End For Loop
STOP

#include <stdio.h>
int main(int argc, char const *argv[]) {
   int num, den;
   int i, n;
   printf("Enter series limit\n");
   scanf("%d", &n); //Till where the series will be starting from zero
   for (i = 0; i < n; i++) {
      if (i%2==0) { //Checking the numerator is odd or even
         if(i%4==0) { //If the numerator divisible by 4 divide it
            num = i/4;
            den = 0;
         }
         else  {//if not divisible by 4 its even number divisible by 2
            num = i/2;
            den = 2;
         }
      }
      else { //Assigning numerator and denominator value if the number is odd
         num = i;
         den = 4;
      }
      if (den != 0) { //if denominator is not zero then print in fraaction form
         printf("%d/%d\n",num, den);
      }
      else //else print in a normal number form
      printf("%d\n", num);
   }
   return 0;
}

出力

上記のプログラムを実行すると、次の出力が生成されます

Enter series limit
5
0
1/4
1/2
3/4
1

  1. Pythonでの最初のCGIプログラム

    これは、hello.pyと呼ばれるCGIスクリプトにリンクされている単純なリンクです。このファイルは/var/ www / cgi-binディレクトリに保存されており、次の内容が含まれています。 CGIプログラムを実行する前に、 chmod 755 hello.pyを使用してファイルのモードを変更していることを確認してください ファイルを実行可能にするUNIXコマンド。 例 #!/usr/bin/python print "Content-type:text/html\r\n\r\n" print '</html>' print '<

  2. Pythonの分数モジュール

    Pythonでは、Fractionモジュールは有理数演算をサポートしています。このモジュールを使用すると、整数、浮動小数点数、小数、およびその他の数値と文字列から分数を作成できます。 分数インスタンスの概念があります。これは、分子と分母としての整数のペアによって形成されます。 クラスfractions.Fraction Fractionオブジェクトを作成するために使用されます。分子と分母が必要です。分子のデフォルト値は0で、分母は1です。分母が0の場合、ZeroDivisionErrorが発生します。 最初に、クラスが分子と分母を使用して分数を作成する方法を確認します。 サンプルコード