Difference between revisions of "User:Ciferkey"

From DSiBrew
Jump to navigation Jump to search
(New page: //Self Conscience Code #include <iostream> using namespace std; bool is_running(){ return true; } int main(){ if( is_running() ) cout << "I am running"; else ...)
(No difference)

Revision as of 17:16, 20 April 2009

//Self Conscience Code

  1. include <iostream>

using namespace std;

bool is_running(){

    return true;

}

int main(){

   if( is_running() )
       cout << "I am running";
   else
       cout << "I am not running";
       
   char t = getchar();
   return 0;

}