>  기사  >  백엔드 개발  >  C에서 주어진 숫자의 곱셈표를 인쇄합니다.

C에서 주어진 숫자의 곱셈표를 인쇄합니다.

王林
王林앞으로
2023-09-06 11:53:051351검색

프로그램 설명

주어진 숫자의 구구단을 인쇄하세요

알고리즘

곱셈으로 구성되어야 하는 사용자가 제공한 모든 숫자를 받아들입니다.

I 값에서 시작하여 주어진 숫자를 곱합니다(=1 )

주어진 숫자를 I로 변환합니다. I 값이 12보다 작거나 같을 때까지 값이 증가합니다.

Example

/* Program to print the multiplication table of a given number */
#include <stdio.h>
int main() {
   int number, i;
   clrscr();
   printf("Please enter any number to find multiplication table:");
   scanf("%d", &number);
   printf("Multiplication table for the given number %d: ", number);
   printf("</p><p>");
   for(i=1;i<=12;i++){
      printf("%d x %d = %d", number, i, number * i);
      printf("</p><p>");
   }
   getch();
   return 0;
}

Output

C에서 주어진 숫자의 곱셈표를 인쇄합니다.

위 내용은 C에서 주어진 숫자의 곱셈표를 인쇄합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제