#include
using namespace std;
int main()
{
int son1, son2;
cout << "Birinchi sonni kiriting: ";
cin >> son1;
cout << "Ikkinchi sonni kiriting: ";
cin >> son2;
cout << "Siz kiritgan sonlar: " << son1 << " va " << son2 << endl;
return 0;
}
`
C++ 2 darsi bu input qilish quydagi shartni korshingiz mumkin.
Related Posts
Exploring Retrieval Augmented Generation (RAG): Chunking, LLMs, and Evaluations
Retrieval Augmented Generation (RAG) is a useful technique for using your own data in an AI-powered Chatbot. In…
How to Build a Real Estate NFT Marketplace Platform: Full Guide for 2025
In recent years, NFTs have reshaped the rules of the game across multiple industries — from art and…
Libraries vs. Frameworks: Which is right for your next web project?
There is no one-size-fits-all approach to web development. Several tools are available to help software developers streamline their…