Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'functions'

2052865 - Sight theme functions.php php functions wordpress theme sight
preview unavailable
741189 - functions.php functions
preview unavailable
589694 - Example file (HELP): c help functions main
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.                    int firstNumber, secondNumber, yesOrno;
  6.                    std::cout << "\nEnter two numbers.\nFirst: ";
  7.                    std::cin >> firstNumber;
  8.                    std::cout << "Second: ";
  9.  
589678 - Example file (HELP): c help functions main
  1. #include <iostream>
  2.  
  3. void PlayAgain()
  4. {
  5.      int yesOrno = 0; while(yesOrno == 0) { std::cout << "Play again?(0=Yes 1=No)\n";}
  6.      std::cin >> yesOrno;
  7.      if (yesOrno == 0)
  8.      std::cout << "Ok! You can play again!\n";
  9.  
fantasy-obligation