mirror of
https://github.com/federico-busato/Modern-CPP-Programming.git
synced 2025-06-14 11:28:40 +03:00
Basics1
This commit is contained in:
18
C++All_Programs/basic.cpp
Normal file
18
C++All_Programs/basic.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
#include<bits/stdc++.h>
|
||||
using namespace std;
|
||||
|
||||
int main(){
|
||||
// 1. input ans output
|
||||
int n;
|
||||
|
||||
cout<<"Enter a number : ";
|
||||
cin>>n;
|
||||
cout<<"\n Entered number is ---> "<<n;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user