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

  • برمجة سي بلس بلس
  • برمجة

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

Sample Output:

 Find the sum of first and last digit of a number:                     
------------------------------------------------------                 
 Input any number: 12345                                               
 The first digit of 12345 is: 1                                        
 The last digit of 12345 is: 5                                         
 The sum of first and last digit of 12345 is: 6

الأجوبة

#include <iostream>
using namespace std;

int main()
{
   int n,first,last,sum;
    cout << "\n\n Find the sum of 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;
	cout<<" The sum of first and last digit of "<<n<<" is: "<<first+last<<endl;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...