0.Bảng cửu chương


Submit solution

Points: 1 (partial)
Time limit: 1.0s
Memory limit: 98M

Author:
Problem type
Allowed languages
Ada, Assembly, Awk, C, C++, C11, CLANG, CLANGX, Classical, COBOL, Coffee, CSC, D lang, DART, F95, FORTH, Fortrn, GAS32, GO, Haskell, Itercal, Java, kotlin, LEAN, LISP, LUA, MONOVB, Nasm, OCAML, Pascal, Perl, php, PIKE, prolog, Pypy, Python, Ruby 2, RUST, Scala, SCM, SED, SWIFT, TCL, TUR, V8JS, VB, ZIG

Đọc một số nguyên N \((1 \le N \le 1000)\). In bảng nhân của N:

1 x N = N

2 x N = 2 N

...

10 x N = 10 N

Đầu vào

Đầu vào là một số nguyên N \((1 \le N \le 1000)\).

Đầu ra

In bảng nhân của N., như ví dụ sau.

VÍ DỤ

INPUT

140

OUTPUT

1 x 140 = 140

2 x 140 = 280

3 x 140 = 420

4 x 140 = 560

5 x 140 = 700

6 x 140 = 840

7 x 140 = 980

8 x 140 = 1120

9 x 140 = 1260

10 x 140 = 1400


Comments


  • 0
    trantuanwoeitr  commented on Nov. 10, 2021, 7:39 a.m. edited
    #include<stdio.h>
    int main()
    {
    int n,i;
    scanf("%d",&n);
    for(i=1;i<=10;i++){ printf("%d * %d =% d \n",i,n,n*i);
    }
    }