Answer:
Explanation:
Allow you to view the document in different ways. Sorry if I am wrong. I am dumb
God bless, stay safe, and good luck! :)
Answer:
See explaination for program code
Explanation:
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main() {
string name;
int age;
cout << "Enter name of user: ";
getline(cin, name);
cout << "Enter age of user: ";
cin >> age;
ofstream outdata("outdata");
outdata << name << " " << age << endl;
outdata.close();
return 0;
}
Given a particular input, will always produce the same output, with the underlying machine always passing through the same sequence of states.
Answer:
1 2
1 1
1 0
Explanation:
i got it wrong for the awnser