📜  TCS编码实践问题|数字的阶乘

📅  最后修改于: 2021-05-24 18:30:11             🧑  作者: Mango

给定一个数字,任务是使用命令行参数找到该数字的阶乘。非负整数的阶乘是所有小于或等于n的整数的乘积。

例子:

Input: 3
Output: 6
1 * 2 * 3 = 6

Input: 6
Output: 720
1 * 2 * 3 * 4 * 5 * 6 = 720

方法:

  • 由于该数字是作为命令行参数输入的,因此不需要专用的输入行
  • 从命令行参数中提取输入数字
  • 提取的数字将为String类型。
  • 将此数字转换为整数类型并将其存储在变量中,例如num
  • 找到该数字的反面并存储在变量中,例如rev_num
  • 检查此rev_num和num是否相同。
  • 如果它们不相同,则数字不是回文
  • 如果相同,则为回文数

程序:

C
// C program to find factorial of a number
// using command line arguments
  
#include 
#include  /* atoi */
  
// Function to find factorial of given number
unsigned int factorial(unsigned int n)
{
    int res = 1, i;
    for (i = 2; i <= n; i++)
        res *= i;
    return res;
}
  
// Driver code
int main(int argc, char* argv[])
{
  
    int num, res = 0;
  
    // Check if the length of args array is 1
    if (argc == 1)
        printf("No command line arguments found.\n");
  
    else {
  
        // Get the command line argument and
        // Convert it from string type to integer type
        // using function "atoi( argument)"
        num = atoi(argv[1]);
  
        // Find the factorial
        printf("%d\n", factorial(num));
    }
    return 0;
}


Java
// Java program to find the factorial of a number
// using command line arguments
  
class GFG {
  
    // Method to find factorial of given number
    static int factorial(int n)
    {
        int res = 1, i;
        for (i = 2; i <= n; i++)
            res *= i;
        return res;
    }
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Check if length of args array is
        // greater than 0
        if (args.length > 0) {
  
            // Get the command line argument and
            // Convert it from string type to integer type
            int num = Integer.parseInt(args[0]);
  
            // Get the command line argument
            // and find the factorial
            System.out.println(factorial(num));
        }
        else
            System.out.println("No command line "
                               + "arguments found.");
    }
}


输出:

  • 在C中:

  • 在Java:
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”