Your Projects or Programms !
Started by mendim., Dec 05 2008 03:41 PM
24 replies to this topic
#1
Posted 05 December 2008 - 03:41 PM
Hi Everyone . !
In This Thread you should Show Your Projects or Programs that you made or just only some ScreenShots ..!!
Discuss about Them !!
In This Thread you should Show Your Projects or Programs that you made or just only some ScreenShots ..!!
Discuss about Them !!
|
|
|
#2
Guest_Jordan_*
Posted 05 December 2008 - 04:35 PM
Guest_Jordan_*
ionFiles (in community projects) and ionStats are mt two current projects.
Posted via CodeCall Mobile
Posted via CodeCall Mobile
#3
Posted 06 December 2008 - 02:47 AM
Can You Post Some ScreenShots // ?
#4
Posted 06 December 2008 - 04:32 AM
Unfortunately, most of my projects are for work and can't be shared.
#5
Guest_Jordan_*
Posted 06 December 2008 - 04:43 AM
Guest_Jordan_*
Click Downloads up top and you will see a working version.
#6
Posted 06 December 2008 - 07:25 AM
most of my projects are for fun:
-sudoku game(work in progress)
-lyrics finder/manager
-sql statements generator-only for creating tables
-sudoku game(work in progress)
-lyrics finder/manager
-sql statements generator-only for creating tables
yo homie i heard you like one-line codes so i put a one line code that evals a decrypted one line code that prints "i love one line codes"
eval(base64_decode("cHJpbnQgJ2kgbG92ZSBvbmUtbGluZSBjb2Rlcyc7"));
www.amrosama.com | the unholy methods of javascript
#7
Posted 06 December 2008 - 07:56 AM
Wanna know what was the last program I wrote?
A console app in C++ to multiply and divide two numbers :p
A console app in C++ to multiply and divide two numbers :p
Interested in participating in community events?
Want to harness your programming skill and turn it into absolute prowess?
Come join our programming events!
#8
Posted 06 December 2008 - 07:59 AM
MathXpert said:
Wanna know what was the last program I wrote?
A console app in C++ to multiply and divide two numbers :p
A console app in C++ to multiply and divide two numbers :p
Wow .. dude .. how did you do that ?! :scared:
#9
Posted 06 December 2008 - 08:44 AM
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
double a,b,x1,x2;
cout << "Shtypni vleren e a= " << endl;
cin>> a;
cout << "Shtypni vleren e b= " << endl;
cin >> b;
x1= a*b;
cout<<"Vlera e a x b= " << x1 << endl;
x2= a/b;
cout << "vlera e a / b= " << x2 << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
:p
Interested in participating in community events?
Want to harness your programming skill and turn it into absolute prowess?
Come join our programming events!
#10
Posted 06 December 2008 - 09:18 AM
MethOS.
I'm writing a bunch of classes in C++.
Thinking about writing a Window Manager.
Other random **** not worth listing.
I'm writing a bunch of classes in C++.
Thinking about writing a Window Manager.
Other random **** not worth listing.
#11
Posted 06 December 2008 - 09:21 AM
wow .. lol .. thnx a lot for your help :lol: :p
#12
Posted 06 December 2008 - 09:34 AM


Sign In
Create Account


Back to top











