input license here

Chương trình C ++ để in số được nhập bởi người dùng

Chương trình in số được nhập bởi người dùng bằng c++
#include <iostream>
using namespace std;
int main()
{   
    int number;
    cout << "Enter an integer: ";
    cin >> number;
    cout << "You entered " << number;   
    return 0;
}
Kết quả
Enter an integer: 23
You entered 23
Chương trình C ++ để in số được nhập bởi người dùng
Diệp Quân
Nguyen Manh Cuong is the author and founder of the vmwareplayerfree blog. With over 14 years of experience in Online Marketing, he now runs a number of successful websites, and occasionally shares his experience & knowledge on this blog.
SHARE

Related Posts

Subscribe to get free updates

Post a Comment

Sticky