input license here

Viết chương trình tạo bảng nhân trong C++

Ví dụ để tạo bảng nhân của một số (được người dùng nhập) bằng vòng lặp for.Để hiểu ví dụ này, bạn nên có kiến thức về các chủ đề bài tập lập trình C ++ sau đây:
Viết chương trình tạo bảng nhân trong C++

Ví dụ 1: Hiển thị bảng nhân lên tới 10
#include <iostream>
using namespace std;
int main()
{
    int n;
    cout << "Enter a positive integer: ";
    cin >> n;
    for (int i = 1; i <= 10; ++i) {
        cout << n << " * " << i << " = " << n * i << endl;
    }
   
    return 0;
}
Output
Enter an integer: 5
5 * 1 = 5
5 * 2 = 10
5 * 3 = 15
5 * 4 = 20
5 * 5 = 25
5 * 6 = 30
5 * 7 = 35
5 * 8 = 40
5 * 9 = 45
5 * 10 = 50
Related Posts
Diệp Quân
Nguyen Manh Cuong is the author and founder of the vmwareplayerfree blog. With over 14 years of experience in Online Marketing, he now runs a number of successful websites, and occasionally shares his experience & knowledge on this blog.
SHARE

Related Posts

Subscribe to get free updates

Post a Comment

Sticky