Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Find the first and last digit of a number

C++ For Loop: Exercise-56 with Solution

Write a program in C++ to find the first and last digit of a number.

Pictorial Presentation:

C++ Exercises: Find the first and last digit of a number

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
   int n,first,last;
    cout << "\n\n Find the first and last digit of a number:\n";
    cout << "-----------------------------------------------\n";
    cout << " Input any number: ";
    cin >> n;
    first = n;
	last=n % 10;
	for(first=n;first>=10;first=first/10);
    cout<<" The first digit of "<<n<<" is: "<<first<<endl;
    cout<<" The last digit of "<<n<<" is: "<<last<<endl;
}

Sample Output:

 Find the first and last digit of a number:                            
-----------------------------------------------                        
 Input any number: 5679                                                
 The first digit of 5679 is: 5                                         
 The last digit of 5679 is: 9 

Flowchart:

Flowchart: Find the first and last digit of a number

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display such a pattern for n number of rows using number. Each row will contain odd numbers of number. The first and last number of each row will be 1 and middle column will be the row number. n numbers of columns will appear in 1st row.
Next: Write a program in C++ to find the sum of first and last digit of a number.

What is the difficulty level of this exercise?