주어진 숫자의 구구단을 인쇄하세요
곱셈으로 구성되어야 하는 사용자가 제공한 모든 숫자를 받아들입니다.
I 값에서 시작하여 주어진 숫자를 곱합니다(=1 )
주어진 숫자를 I로 변환합니다. I 값이 12보다 작거나 같을 때까지 값이 증가합니다.
/* 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; }
위 내용은 C에서 주어진 숫자의 곱셈표를 인쇄합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!