Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ login

#include<iostream>
int main() {
  std::cout << "Welcome, Enter the password
";
  std::string tempVar, password = "iloveu";
  while(true) {
    std::cin >> tempVar;
    if(tempVar != password) std::cout << "incorrect, well try again:)
";
    else break;
  }
  std::cout << "uhhh i can't, i love u too... ♥♥
";
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: Chef and Feedback codechef solution in cpp 
Cpp :: round function in c++ 
Cpp :: executing linux scripts 
Cpp :: c++ struktura kolejki 
Cpp :: c++ create vector of size 
Cpp :: Max / Min Stack in c++ using stl in O(1) time and space 
Cpp :: c++ projects 
Cpp :: iterator c++ 
Cpp :: c++ sudoku solver 
Cpp :: palindrome no example 
Cpp :: how to tokenize a string in c++ 
Cpp :: who made c++ 
Cpp :: C++ Assignment Operators 
Cpp :: c++ filesystem remove file 
Cpp :: c++ error 0xC0000005 
Cpp :: is the c++ 20 char te same as the old one 
C :: generate n-bit gray code in c 
C :: c get time in milliseconds 
C :: arduino serial read write structure 
C :: C hello workld 
C :: c boolean 
C :: first program in c 
C :: input in c 
C :: c iterate string 
C :: matplotlib plot circle marker 
C :: pg_restore: error: input file appears to be a text format dump. Please use psql. 
C :: typedef in c 
C :: Gemfile.lock`. It is likely that you need to grant write permissions for that path. 
C :: c fopen 
C :: inputting an array in c 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =