Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

code to find the last digit of a number

int n;
cout<<"Enter the number";
cin>>n;
int LD= n % 10;
cout<<LD<<endl;
 
PREVIOUS NEXT
Tagged: #code #find #digit #number
ADD COMMENT
Topic
Name
8+9 =