Difference between revisions of "User:Ciferkey"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
+ | Black DSi version 1.2u but can access the shop! | ||
+ | |||
+ | |||
<source lang=cpp> | <source lang=cpp> | ||
//Self Conscience Code | //Self Conscience Code |
Revision as of 15:22, 27 June 2009
Black DSi version 1.2u but can access the shop!
//Self Conscience Code
#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;
}