#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
What happened after I posted Daffodil’s Show HN Post
A month ago I started telling people about Daffodil — an open-source ecommerce framework to build ecommerce stores…
Ibuprofeno.py💊| #119: Explica este código Python
Explica este código Python Dificultad: Intermedio my_tuple = ("1", "20", "30", "9") print(max(my_tuple)) 👉 A. 1 👉 B.…
React Hooks now part of Ably’s JavaScript SDK (and how to build a simple React App with Ably)
React is one of the most popular JavaScript libraries in the world, and is known for its performance,…