-
Write a program in C++ to convert temperature in Celsius to Fahrenheit
Write a program in C++ to convert temperature in Celsius to Fahrenheit Solution: #include <iostream> using namespace std; int main() { float frh, cel; cout << "\n\n Convert temperature in Celsius to Fahrenheit :\n"; cout << " ----------------------------\n"; cout << " Input the temp in Ce... Read More
-
Write a program in C++ to find the Area and Perimeter of a Rectangle
Write a program in C++ to find the Area and Perimeter of a Rectangle Solution: #include <iostream> using namespace std; int main() { int width, lngth, area, peri; cout << "\n\n Find the Area and Perimeter of a Rectangle :\n"; cout << " ---------------------\n"; cout<<" Input the length of... Read More
-
Write a program in C++ to calculate the volume of a sphere
Write a program in C++ to calculate the volume of a sphere Solution: #include <iostream> using namespace std; int main() { int rad1; float volsp; cout << "\n\n Calculate the volume of a sphere :\n"; cout << " ---------------------------\n"; cout<<" Input the radius of a sphere : "; cin>... Read More
-
Write a program in C++ to swap two numbers
Write a program in C++ to swap two numbers Sample Output: Swap two numbers: -———————- Input 1st number: 25 Input 2nd number: 39 After swapping the 1st number is: 39 After swapping the 2nd number is: 25 Solution: #include <iostream> using namespace std; int main() { cout << "\n\nSwap two numb... Read More
-
Các lệnh terminal trên mac nên biết!
Cách mở Terminal Trên máy Mac của bạn, hãy thực hiện một trong các tác vụ sau: Bấm vào biểu tượng Launchpad trên Dock, nhập Terminal vào trường tìm kiếm, sau đó bấm vào Terminal. Trong Finder , hãy mở thư mục /Ứng dụng/Tiện ích, sau đó bấm hai lần vào Terminal Nhấn tổ hợp phím Command + Space > Gõ Ter... Read More
-
100+ Bài tập Python có lời giải
1. Thông tin các mức độ Các bài tập chúng tôi sưu tầm được chia thành 3 mức độ (level) Level 1 Beginner: Beginner means someone who has just gone through an introductory Python course. He can solve some problems with 1 or 2 Python classes or functions. Normally, the answers could directly be found in the text... Read More
-
100+ Bài tập Python có lời giải
Bài tập Python thực hành với code mẫu Hơn 100 bài tập Python kèm code mẫu được chia thành 3 cấp độ dành cho cả người mới bắt đầu học lập trình, người đã học lập trình nhưng mới học Python và những người muốn nâng cao trình độ Python. Mỗi bài tập đều có đầy đủ các phần là yêu cầu của bài, gợi ý làm bài và lời giải... Read More