Answers for "user inptu in cpp"

C++
0

user inptu in cpp

#include<iostream>
int main(){
int input = 0; // you should aways store inptu in a variable or the inptu won't work
 std::cout << "put the input/n"
 std::cin >> input;
 std::cout << "input accepted it is" << input << "thankyou";
  
}
Posted by: Guest on May-30-2021

Browse Popular Code Answers by Language