![]() |
|
Count to 10 Before an Admin Posts! - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: The Lounge (https://sinister.ly/Forum-The-Lounge) +--- Thread: Count to 10 Before an Admin Posts! (/Thread-Count-to-10-Before-an-Admin-Posts) |
RE: Count to 10 Before an Admin Posts! - Shebang - 07-21-2013 Guess I'll help out. Here's 2. RE: Count to 10 Before an Admin Posts! - Xiledcore - 07-21-2013 Code: #include <iostream>
using namespace std;
int main()
{
int number = 6;
cout << 6/2 << endl;
return 0;
}Not really good with programming math lol. RE: Count to 10 Before an Admin Posts! - Shebang - 07-21-2013 (07-21-2013, 10:37 PM)Xiledcore Wrote: Wanna see my coding? Code: Sub Main()
Console.WriteLine(Math.Pow(2, 2))
End SubRE: Count to 10 Before an Admin Posts! - Anizeb - 07-21-2013 Not everyone can turn "I hate math" into the number 4 without writing numbers, like I can, baby. Did take me a while to write, I'm running on an hours sleep. Anyhow, simple: 5 RE: Count to 10 Before an Admin Posts! - Sapientia - 07-22-2013 A = 5, B = 6, C = 30, F = 15, X = 15, R = 0 A * B = C C / 2 = F R = F - X What does that equal? RE: Count to 10 Before an Admin Posts! - Love - 07-22-2013 I guess that equals 0 :c Well back at 1. RE: Count to 10 Before an Admin Posts! - Hexology - 07-22-2013 2 3 4 5 6 7 8 9 10 GFGFGFGFGF RE: Count to 10 Before an Admin Posts! - Shebang - 07-22-2013 Code: Sub Main()
doStuff()
End Sub
Sub doStuff()
For i = 0 To 2147483647
Console.WriteLine(Math.Pow(Math.Sqrt(2), 2))
Next
End Sub()
In other words, 2.RE: Count to 10 Before an Admin Posts! - Xiledcore - 07-22-2013 (07-22-2013, 02:58 AM)shebang Wrote: Code: #include <iostream>
using namespace std;
int add(int a, int b)
{
int result;
result = a+b;
return result;
}
int main()
{
int n1 = 3;
int n2;
n2 = n1+1-4;
cout << add(n1, n2) << endl;
system("PAUSE");
return 0;
}RE: Count to 10 Before an Admin Posts! - Sapientia - 07-22-2013
|