1) Write a program to enter a number and the term up to which the user wants to print.
Answers
Answered by
1
Answer:
int main()
{
int number;
cout << "Enter an integer: ";
cin >> number;
cout << "You entered " << number;
return 0;
}
Explanation:
This program is in c
◕‿◕
Answered by
0
Answer:
please mark me as brainliest
Attachments:
Similar questions