Computer Science, asked by Bavithareddy70678, 5 months ago

write a program to enter a numnber and display its factors​

Answers

Answered by Anonymous
0

Answer:

C++ Program to Display the Factors of the Given Number

* C++ program to display the factors of the entered number.

#include<iostream>

using namespace std;

int number, temp = 1;

cout << "Enter the number to determine its factors : " << endl;

cin >> number;

cout << "The factors of " << number << " are : " << endl;

while (temp <= number)

Answered by bholusoniverma
2

Explanation:

7. Read the extracts given below and answer the questions that follow:

“There is greater truth in the shashtra than we imagine.” said Ranga.

a) Name the chapter and its author.

b) In what context was this line said?

c) Who was with Ranga at that time?

d) Who was the girl that Ranga wanted to marry?

Similar questions