background preloader

Programming

Facebook Twitter

HTML 4.01 Quick List. CSS Reference. HTML Examples. Flash Tutorial For Beginners. Top 3 Products & Services Dated: Aug. 12, 2004 Related Categories Flash Introduction In 1997, Macromedia acquired the small company that developed FutureSplash as a way to complement Director, its flagship product. Director, which has been around longer than the Web, is a highly scriptable program built to create interactive presentations and games. Chances are your favorite CD-ROM game was created with it. Users downloaded and installed a free plug-in, and the movies played right there in the browser. By the end of the 3rd quarter of 1998, less than 40% of all surfers were able to view Flash movies right away.

And The Rest is History... History of Flash 1984 - The firm MacroMind is found in Chicago. 1995 - Macromedia takes over Altsys (inventor of FreeHand) FutureWave develops simple vector-based illustration program: SmartSketch FutureWave presents the plugin Future-Splash-Player for SmartSketch 1997 - Flash 1 and shortly afterwards Flash 2 were published. Some Useful Flash Links: Pencil Tool: C++ Programming/Exercises/Iterations. Iterations[edit] Solutions requirements Solutions must: Use only standard C++.Be compilable.Be in accordance to general coding practices. (no esoteric demonstrations are required) and should: Handle error situations, even if behavior is not defined.

Please do not add solutions that are 99% similar to another that is already present, if it is an improvement just add it to the existing solution. EXERCISE 1[edit] Write a program that asks the user to type an integer and writes "YOU WIN" if the value is between 56 and 78 (both included). Int main() {int i; cout << "Type all numbers between 58 and 73: " << endl; cin>>i; if (i>=58 && i<=78) { cout << "YOU WIN" << i << endl; else cout<<"YOU LOSE! " EXERCISE 2[edit] Write a program that asks the user to type all the integers between 8 and 23 (both included) using a for loop. Solution Alternative solution by Bartosz Radwanski Alternate solution Solution in C Another alternate solution Failed solutions (correct them as an extra exercise) EXERCISE 3[edit] Create a web page.