Posts

Showing posts with the label beginner

c++-beginner

begin of code: #include <iostream>  using namespace std; int main(){ input int a, b; cin>>a>>b; output cout<<a<<b; newline when print cout << a <<endl; Conditional == equal != not equal <= >= < > int points=101; if(points>70){ cout << "hoy yah"; } else if(points==70){ cout<<"konoriki"; } else{ cout << "moko"; } int choice=2 switch(choice){ case 1: cout<< "bud"; break; case 2: cout<<"choco"; break; default: cout << "yoyo"; }

JS-beginner

 < Beginner JS >< Function >< Variable >< Loop-If >< OOP > 1/ General concepts Class It is a technique used to provide the criteria to define an object The list of items used to describe something Object It is the result of a description based on a class Method An action that an object can perform document.write("Jacques") document: Object write: method Jacques : Argument Properties It is the caracteristics used to describe an object. A property is created like a variable Method and their arguments It is a value that needs the method to work with to perform an action  protectRain(Reason) Argument  An item or value that a function needs.  It is provided between parenthesis Start and end <script> </script> or <script language="Javascript"> </script> Display string document.write("Jacques") 2/ Forms <form></form> Refering to a form document.CreditApplicationForm 2.1./ Text box <input type=...

PHP - Beginner

PHP Beginner PHP Array Loop Function Pre-Def variable Session Read Write File CRUD Advanced PHP PHP MySQL PHP MyAdmin PHP MySQL Notes Other course Python Beginner Intermediate Advanced Pro python-hosting React Links General JS PHP Programming Python C++ Stuff < Beginner PHP >< Array >< Loop >< Function >< Pre-Def variable >< Session > < Read Write File > < CRUD > < Advanced PHP > < PHP MySQL PHP MyAdmin > < PHP MySQL Notes > Hello World  <?php echo "Hello World"; ?...