Editorial for C++ Bài 1.A3: Vẽ chữ nhật toàn số
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ố \(x\) dựa vào khoảng giá trị của đề bài, đây là một số có 1 chữ số.
Bước 2, các bạn dùng lệnh cin
để nhập số \(x\) 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ú ý in ra cả khoảng trắng và dấu xuống dòng endl
sao cho phù hợp. Các bạn nên quan sát kĩ Output của đề bài.
#include <iostream>
#include <cmath>
#include <iomanip>
#include <vector>
using namespace std;
int main() {
int x; // Declaring an integer variable x
cin >> x; // Taking input for the variable x from the user
// Outputting the rectangular shape using the input number
cout << x << x << x << x << endl; // Outputting a row of the input number repeated four times
cout << x << " " << " " << x << endl; // Outputting a row with the input number separated by spaces
cout << x << " " << " " << x << endl; // Outputting a row with the input number separated by spaces
cout << x << " " << " " << x << endl; // Outputting a row with the input number separated by spaces
cout << x << " " << " " << x << endl; // Outputting a row with the input number separated by spaces
cout << x << x << x << x << endl; // Outputting a row of the input number repeated four times
return 0;
}
Comments