Editorial for C++ Bài 1.A4: Bảng cửu chương
Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.
Submitting an official solution before solving the problem yourself is a bannable offence.
Lời giải chi tiết:
Đầu tiên, các bạn cần khai báo kiểu dữ liệu của số nguyên \(a\) dựa vào khoảng giá trị đề bài đưa \((1 \leq a \leq 9)\).
Bước 2, các bạn dùng lệnh cin
để nhập số a vừa khai báo ở trên.
Bước 3, in ra kết quả theo yêu cầu đề bài, sử dụng lệnh cout
để in ra. Chú ý khoảng trắng và định dạng đúng với yêu cầu output của đề bài. Các bạn sử dụng toán tử *
để thực hiện phép tính.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a;
cin >> a;
cout << a << " x " << 1 << " = " << a*1 << endl;
cout << a << " x " << 2 << " = " << a*2 << endl;
cout << a << " x " << 3 << " = " << a*3 << endl;
cout << a << " x " << 4 << " = " << a*4 << endl;
cout << a << " x " << 5 << " = " << a*5 << endl;
cout << a << " x " << 6 << " = " << a*6 << endl;
cout << a << " x " << 7 << " = " << a*7 << endl;
cout << a << " x " << 8 << " = " << a*8 << endl;
cout << a << " x " << 9 << " = " << a*9 << endl;
cout << a << " x " << 10 << " = " << a*10 << endl;
return 0;
}
Comments