Skip to content

Instantly share code, notes, and snippets.

@FreshtaSara
FreshtaSara / cpsc120_prompt.cc
Created May 6, 2026 21:58 — forked from mshafae/cpsc120_prompt.cc
CPSC 120 Example showing different ways to prompt the computer user for input.
// cpsc120_prompt.cc
// Gist https://gist.github.com/70457715ff7fc2fcdcdaf44437624dd0
#include <iostream>
#include <string>
std::string PromptForString(std::string query) {
std::cout << query;
std::string answer;
std::cin >> answer;