Ответ:
написал на питон и с++
Объяснение:
#include <iostream>
int main() {
int a, b;
std::cout << "Enter the dividend: ";
std::cin >> a;
std::cout << "Enter the divisor: ";
std::cin >> b;
std::cout << "The remainder is " << a % b << std::endl;
return 0;
}
питон
a = int(input("Enter the dividend: "))
b = int(input("Enter the divisor: "))
print("The remainder is", a % b)
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
написал на питон и с++
Объяснение:
#include <iostream>
int main() {
int a, b;
std::cout << "Enter the dividend: ";
std::cin >> a;
std::cout << "Enter the divisor: ";
std::cin >> b;
std::cout << "The remainder is " << a % b << std::endl;
return 0;
}
питон
a = int(input("Enter the dividend: "))
b = int(input("Enter the divisor: "))
print("The remainder is", a % b)