このトピックでは、C プログラミング言語で電卓プログラムを作成する方法について説明します。電卓は、加算、減算、乗算、除算、パーセントなどのさまざまな算術演算を実行するために使用される小型の電子デバイスです。これにより、計算がより簡単かつ迅速になります。これは、簡単な数学演算を実行するためにどこでも使用できるポータブル デバイスです。三角関数、指数演算子、度、ラジアン、対数関数、双曲線関数などの複雑な計算を解く必要がある状況では、関数電卓や高度な電卓を使用します。C 言語で電卓プログラムを作成するさまざまな方法について説明します。 。
電卓プログラムのアルゴリズム
ステップ1: ローカル変数 n1、n2、res、opt を宣言します。たとえば、n1 と n2 が 2 つの数値を取る場合、res は結果を格納し、opt 変数は演算子記号を定義します。
ステップ2: 選択肢を印刷します (加算、減算、乗算、除算など)。
ステップ 3: 選択肢を入力してください
ステップ 4: 2 つの数値 n1 と n2 を受け取ります
CSS太字
ステップ5: ケースを切り替えて、ユーザーが選択した演算子にジャンプします
ステップ6: 結果を res 変数に保存します。
ステップ7: 演算結果を表示する
ステップ8: プログラムを終了します。
C で電卓プログラムを作成するさまざまな方法
以下に、C 言語で電卓プログラムを作成するさまざまな方法を示します。
Javaローカルデート
- switch ステートメントを使用した C の電卓プログラム
- if else if ステートメントを使用した C の電卓プログラム
- do-while ループと switch ステートメントを使用した C の電卓プログラム
- 関数と switch ステートメントを使用した C の電卓プログラム
例 1: switch ステートメントを使用した C の電卓プログラム
switch文を使って電卓プログラムを作成するプログラムを書いてみましょう
プログラム.c
#include int main() { // declare local variables char opt; int n1, n2; float res; printf (' Choose an operator(+, -, *, /) to perform the operation in C Calculator '); scanf ('%c', &opt); // take an operator if (opt == '/' ) { printf (' You have selected: Division'); } else if (opt == '*') { printf (' You have selected: Multiplication'); } else if (opt == '-') { printf (' You have selected: Subtraction'); } else if (opt == '+') { printf (' You have selected: Addition'); } printf (' Enter the first number: '); scanf(' %d', &n1); // take fist number printf (' Enter the second number: '); scanf (' %d', &n2); // take second number switch(opt) { case '+': res = n1 + n2; // add two numbers printf (' Addition of %d and %d is: %.2f', n1, n2, res); break; case '-': res = n1 - n2; // subtract two numbers printf (' Subtraction of %d and %d is: %.2f', n1, n2, res); break; case '*': res = n1 * n2; // multiply two numbers printf (' Multiplication of %d and %d is: %.2f', n1, n2, res); break; case '/': if (n2 == 0) // if n2 == 0, take another number { printf (' Divisor cannot be zero. Please enter another value '); scanf ('%d', &n2); } res = n1 / n2; // divide two numbers printf (' Division of %d and %d is: %.2f', n1, n2, res); break; default: /* use default to print default message if any condition is not satisfied */ printf (' Something is wrong!! Please check the options '); } return 0; }
出力:
例 2: if else if ステートメントを使用した C の電卓プログラム
if else if ステートメントを使用して、C で簡単な電卓プログラムを作成する例を考えてみましょう。
プログラム2.c
#include int main() { // declare local variables char opt; int n1, n2; float res; printf (' Select an operator (+, -, *, /) to perform an operation in C calculator '); scanf ('%c', &opt); // take an operator printf (' Enter the first number: '); scanf(' %d', &n1); // take fist number printf (' Enter the second number: '); scanf (' %d', &n2); // take second number if (opt == '+') { res = n1 + n2; // add two numbers printf (' Addition of %d and %d is: %f', n1, n2, res); } else if (opt == '-') { res = n1 - n2; // subtract two numbers printf (' Subtraction of %d and %d is: %f', n1, n2, res); } else if (opt == '*') { res = n1 * n2; // multiply two numbers printf (' Multiplication of %d and %d is: %f', n1, n2, res); } else if (opt == '/') { if (n2 == 0) // if n2 == 0, take another number { printf (' Divisor cannot be zero. Please enter another value '); scanf ('%d', &n2); } res = n1 / n2; // divide two numbers printf (' Division of %d and %d is: %.2f', n1, n2, res); } else { printf(' You have entered wrong inputs '); } return 0; }
出力:
例 3: do while ループと switch ステートメントを使用した C の電卓プログラム
C で do while ループと switch case ステートメントを使用して電卓プログラムを作成してみましょう
プログラム3.c
コマンドチャウン
#include #include #include int main() { // declaration of local variable op; int op, n1, n2; float res; char ch; do { // displays the multiple operations of the C Calculator printf (' Select an operation to perform the calculation in C Calculator: '); printf (' 1 Addition 2 Subtraction 3 Multiplication 4 Division 5 Square 6 Square Root 7 Exit Please, Make a choice '); scanf ('%d', &op); // accepts a numeric input to choose the operation // use switch statement to call an operation switch (op) { case 1: // Add two numbers printf (' You chose: Addition'); printf (' Enter First Number: '); scanf (' %d', &n1); printf (' Enter Second Number: '); scanf (' %d', &n2); res = n1 + n2; // Add two numbers printf (' Addition of two numbers is: %.2f', res); break; // break the function case 2: // Subtract two numbers printf (' You chose: Subtraction'); printf (' Enter First Number: '); scanf (' %d', &n1); printf (' Enter Second Number: '); scanf (' %d', &n2); res = n1 - n2; // subtract two numbers printf (' Subtraction of two numbers is: %.2f', res); break; // break the function case 3: // Multiplication of the numbers printf (' You chose: Multiplication'); printf (' Enter First Number: '); scanf (' %d', &n1); printf (' Enter Second Number: '); scanf (' %d', &n2); res = n1 * n2; // multiply two numbers printf (' Multiplication of two numbers is: %.2f', res); break; // break the function case 4: // Division of the numbers printf (' You chose: Division'); printf (' Enter First Number: '); scanf (' %d', &n1); printf (' Enter Second Number: '); scanf (' %d', &n2); if (n2 == 0) { printf (' Divisor cannot be zero. Please enter another value '); scanf ('%d', &n2); } res = n1 / n2; // divide two numbers printf (' Division of two numbers is: %.2f', res); break; // break the function case 5: // getting square of a number printf (' You chose: Square'); printf (' Enter First Number: '); scanf (' %d', &n1); res = n1 * n1; // get square of a number printf (' Square of %d number is: %.2f', n1, res); break; // break the function case 6: // getting the square root of the number printf (' You chose: Square Root'); printf (' Enter First Number: '); scanf (' %d', &n1); res = sqrt(n1); // use sqrt() function to find the Square Root printf (' Square Root of %d numbers is: %.2f', n1, res); break; // break the function case 7: printf (' You chose: Exit'); exit(0); break; // break the function default: printf(' Something is wrong!! '); break; } printf (' ********************************************** '); } while (op != 7); return 0; }
出力:
例 4: 関数と switch ステートメントを使用した C の電卓プログラム
C言語で関数とswitch case文を使った電卓プログラムを作ってみましょう
プログラム4.c
#include #include #include #include // function declarations int addition(); int subtract(); int multiply(); int divide(); int sq(); int sqrt1(); void exit(); int main() { // declaration a local variable op; int op; do { // displays the multiple operations of the C Calculator printf (' Select an operation to perform the calculation in C Calculator: '); printf (' 1 Addition 2 Subtraction 3 Multiplication 4 Division 5 Square 6 Square Root 7 Exit Please, Make a choice '); scanf ('%d', &op); // accepts a numeric input to choose the operation // use switch statement to call an operation switch (op) { case 1: addition(); /* It call the addition() function to add the given numbers */ break; // break the function case 2: subtract(); /* It call the subtract() function to subtract the given numbers */ break; // break the function case 3: multiply(); /* It call the multiply() function to multiply the given numbers */ break; // break the function case 4: divide(); // It call the divide() function to divide the given numbers break; // break the function case 5: sq(); // It call the sq() function to get the square of given numbers break; // break the function case 6: sqrt1(); /* It call the sqrt1() function to get the square root of given numbers */ break; // break the function case 7: exit(0); // It call the exit() function to exit from the program break; // break the function default: printf(' Something is wrong!! '); break; } printf (' ********************************************** '); } while (op != 7); return 0; } // function definition int addition() { int i, sum = 0, num, f_num; // declare a local variable printf (' How many numbers you want to add: '); scanf ('%d', &num); printf (' Enter the numbers: '); for (i = 1; i <= num; i++) { scanf(' %d', &f_num); sum="sum" + f_num; } printf (' total of the numbers="%d'," sum); return 0; use subtract() function to subtract two int n1, n2, res; first number is: '); scanf &n1); second &n2); res="n1" - n2; subtraction %d res); multiply() multiply * divide() divide if (n2="=" 0) divisor cannot be zero. please enter another value ('%d', division sq() get square given a square: n1; sqrt1() root float root: %f', < pre> <p> <strong>Output:</strong> </p> <img src="//techcodeview.com/img/c-tutorial/61/calculator-program-c-5.webp" alt="Calculator Program in C"> <hr></=>