User:Xzen813: Difference between revisions

From Stage One Wiki
Jump to navigationJump to search
Xzen813 (talk | contribs)
No edit summary
Xzen813 (talk | contribs)
No edit summary
 
Line 36: Line 36:
*#[https://seanzeng.com/login/loginmodules/googleauthtest.php GoogleAuth Tester]
*#[https://seanzeng.com/login/loginmodules/googleauthtest.php GoogleAuth Tester]
**#Test
**#Test
***Test
***Test
***Test
  code
  code
  code
  code

Latest revision as of 06:54, 31 October 2016

Userpage Sean Zeng

Welcome

Hi there! I'm surprised you clicked on this link.

Useful links for Compsci111/111G

Coding

Fun way to convert from Decimal to Binary in C++.

void ConvertToBinary(int n) /*Alex says: Good to use unsigned int if u can*/
{
   if (n / 2 != 0) {
       ConvertToBinary(n / 2);
   }
   printf("%d", n % 2);
}

Thanks For Visiting!

Have a good day!

If you want to see more, check out my website: www.seanzeng.com

TEST Revision

Numbered Lists

  1. Hello
  2. Hello2
  3. Hello3

Links + Numbered Bullets

code
code