6.4.. Napisati program koji učitava dvocifreni broj i ispisuje razliku prve i druge cifre.

Opis rješenja:

Opis programa:

Listing programa:

// 06411125
#include <iostream>
#include <cstdlib>
using namespace std;

int main() {
	int x, y, a, r;
	cout<<"Unesi dvocifren broj: ";
	cin>>a;
	system("CLS");
	y = a % 10;
	x = a / 10;
	r = x - y;
	cout<<"Broj je "<<a<<". Razlika prve i druge cifre je "<<r<<endl;	
		
	return 0;
}

Ispis na ekranu:

Index