#include <iostream>
int main(){
std::string firstname; //variable created as a string
std::cout << "What's your first name
";
std::cin >> firstname;//asking for the users' first name
std:: cout << "Hello " << firstname
}
//Works for anyone, don't need any packages, just type this is in and run it.
int x;
cout << "hurry, give me a number!: "; // Type a number and press enter
cin >> x; // Get user input from the keyboard
cout << "you picked: " << x << " !" // Display the input value
OR use:
getline >> (cin, variable-name);
instead of
cin >> x;
#include <iostream>
using namespace std;
int main()
{
string first_name, last_name;
int age;
//prompt the user to enter there first name and store the value
cout << "Enter your first name: ";
getline(cin, first_name);
//request the user to enter there last name and store the value
cout << "Enter your last name: ";
getline(cin, last_name);
//request the user to enter there age and store the value
cout << "Enter your age: ";
cin >> age;
//print an output string to the terminal
cout << "Your full name is " << first_name << " " << last_name << " and you are " << age << " years old." << endl;
}
/*Q: Write a program that ask the user to enter the roll
number, section, CGPA and print the formatted output
on the screen?*/
#include<iostream>
using namespace std;
int main()
{
int a;
char b;
float c;
cout<<"Roll Number:"<<a;
cin>>a;
cout<<"Section :"<<b;
cin>>b;
cout<<"CGPA :"<<c;
cin>>c;
return 0;
}
int main(){
std::string firstname; //variable created as a string
std::cout << "What's your first name
";
std::cin >> firstname;//asking for the users' first name
std:: cout << "Hello " << firstname
#include <iostream>
using namespace std;
int main() {
int n1, n2;
float f1;
char c1;
cout<<"Enter two integers, a float and a char: ";
cin>>n1>>n2>>f1>>c1; //multiple input in single line
cout<<"Check: "<<n1<<n2<<f1<<c1<<endl;
return 0;
}
int x;
cout << "Type a number: "; // Type a number and press enter
cin >> x; // Get user input from the keyboard
cout << "Your number is: " << x; // Display the input value
cin >> variable;
// sample 1
int x;
cout << "x: ";
cin >> x;
cout << x << endl;
//sample 2
int num;
for (int i = 0; i < 10; i++){
cout << "Give a number: ";
cin >> num;
}
Code Example |
---|
Cpp :: integer type validation c++ |
Cpp :: c++ initialize array with all zeros |
Cpp :: c++ how to check whether a file exists? |
Cpp :: print in c++ |
Cpp :: c++ mst kruskal |
Cpp :: c++ rand |
Cpp :: Unsorted Linked list in c++ |
Cpp :: delete file cpp |
Cpp :: if even number c++ |
Cpp :: remove last character from string c++ |
Cpp :: round double to n decimal places c++ |
Cpp :: c++ compare time |
Cpp :: c++ reverse integer |
Cpp :: use ::begin(WiFiClient, url) |
Cpp :: iterating in map/unordered map c++ |
Cpp :: C++ Find the sum of first n Natural Numbers |
Cpp :: slice std::array cpp |
Cpp :: c++ int main() |
Cpp :: opencv c++ image write |
Cpp :: cpp ifstream |
Cpp :: C++ array sort method |
Cpp :: setprecision c++ |
Cpp :: glew32.dll was not found |
Cpp :: 1523. Count Odd Numbers in an Interval Range solution in c++ |
Cpp :: c++ vectors |
Cpp :: c++ set comparator |
Cpp :: c++ array size |
Cpp :: c++ int to char* |
Cpp :: how to search in array c++ |
Cpp :: unique_ptr syntax |