This web page requires JavaScript to be enabled.

JavaScript is an object-oriented computer programming language commonly used to create interactive effects within web browsers.

How to enable JavaScript?

Xuất ra màn hình bản cửu chương

10cth1-2 November 28, 2011 0

Compiler: Borland C/ C-free/Visual Studio
[codes=c]#include
#include

int main()
{
    int n=9;
    int i,j,x;
    for(i=2;i<=9;i++)
    {
        for(j=1;j<=10;j++)
        {
            x=i*j;
            printf("%d x %d = %d\n",i,j,x);
        }
        printf("\n");
    }
    printf("\n");
    getch();
} [/codes]


Last modified on March 31st, 2021 at 1:12 am

Nam Le
lequocnam



0 responds

Leave a Reply

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.