По разделам

 

Решение задачи Integer 7


Дано двузначное число. Найти сумму и произведение его цифр.

Код (C/C++)

#include <iostream>
using namespace std;
int main(){
	int n, f, s;
	cout << "Enter the number N: ";
	cin >> n;
	f = int(n/10);
	s = n%10;
	cout << "Sum of the digits: " << f+s << endl;
	cout << "Product of the digits: " << f*s;
	return 0;
}

Код (Python)

import random

N = random.randrange(10,100)
print("N = ", N)
d1 = int(N/10)
d0 = N%10
print("Tens: ", d1)
print("Units: ", d0)
print("Sum: ", d1+d0)
print("Product: ", d1*d0)
									

Код (Pascal)

program Integer7;
var
  A, Res: Integer;
begin
  Write('Введите двузначное число: ');
  Readln(A);
  Res:=(A div 10) + (A mod 10);
  Writeln('Сумма его цифр равна: ',Res);
  Res:=(A div 10) * (A mod 10);
  Writeln('Произведение его цифр равно: ',Res);
end.
									




Integer. Абрамян
Integer 1 Просмотров: 11855
Integer 2 Просмотров: 7526
Integer 3 Просмотров: 7954
Integer 4 Просмотров: 35999
Integer 5 Просмотров: 8404
Integer 6 Просмотров: 6935
Integer 7 Просмотров: 6779
Integer 8 Просмотров: 5428
Integer 9 Просмотров: 4547
Integer 10 Просмотров: 6163
Integer 11 Просмотров: 6506
Integer 12 Просмотров: 6925
Integer 13 Просмотров: 6463
Integer 14 Просмотров: 3463
Integer 15 Просмотров: 4389
Integer 16 Просмотров: 3585
Integer 17 Просмотров: 3878
Integer 18 Просмотров: 3536
Integer 19 Просмотров: 5377
Integer 20 Просмотров: 4118
Integer 21 Просмотров: 4465
Integer 22 Просмотров: 3628
Integer 23 Просмотров: 4510
Integer 24 Просмотров: 8377
Integer 25 Просмотров: 3639
Integer 26 Просмотров: 3219
Integer 27 Просмотров: 2980
Integer 28 Просмотров: 3729
Integer 29 Просмотров: 5067
Integer 30 Просмотров: 4628

Комментарии

Чтобы написать комментарии вам нужно войти в систему или зарегистрироваться



Заявка на расчет