pgrm_002.cpp (182B)
1 /* Taking input */ 2 3 #include<iostream> 4 using namespace std; 5 int main() { 6 int n; 7 cout << "Enter the number: "; 8 cin >> n; 9 cout << "You entered: " << n; 10 return 0; 11 }
bscComprehensive codebase and cou... | |
| Log | Files | Refs | Activity | README | LICENSE |
pgrm_002.cpp (182B)
1 /* Taking input */ 2 3 #include<iostream> 4 using namespace std; 5 int main() { 6 int n; 7 cout << "Enter the number: "; 8 cin >> n; 9 cout << "You entered: " << n; 10 return 0; 11 }