Warning: include(lang/br/recherche/br.php) [function.include]: failed to open stream: No such file or directory in /homez.68/banqueim/www/answer/cat.php on line 23

Warning: include() [function.include]: Failed opening 'lang/br/recherche/br.php' for inclusion (include_path='.:/usr/local/lib/php') in /homez.68/banqueim/www/answer/cat.php on line 23
Questions / Réponses au sujet de Programming & Design

Questions / Réponses au sujet de Programming & Design

What is the BASIC code for the graphic calculator game Hero?
I don't have a TI connectivity cable, so I have to manually input all of my programs... Anyway, there is a game for the TI-83+ called HERO, and I was looking for the program code for that. (Not the connectivity code, but the actual code you'd input for the game.) Links/help would be appreciated. Thank you!
Catégorie : Programming & Design
Par : Caleb C
What are some sites that include cartoon/sketch effects with colour?
Or even one site, just one that's good and works. Sites like befunky.com. And if there are any PROGRAMS alike, I'd appreciate you name them, too.
Catégorie : Programming & Design
Par : That Girl...
I can't see the Korean script on my computer.?
Well as the title says, i can't see my own Korean typing. Like some people can see but me myself can only see boxes. And on Firefox i see box's with number combination in it. Really confused help would be appreciated.
Catégorie : Programming & Design
Par : Daniel L
Writing formulas into English sentences ?
Consider a language with the predicates friend (x,y) (meaning that x is a friend of y), child(x), animal(x) and dog(x) (meaning that x is a child, an animal or a dog, respectively, and the constant Fido. please help with formulas converting into English sentences A (other way round) x 3 (other way E) y friend(x, y) 3 x (dog(x) ^ A (other way round) y (friend(x, y) → child(y)))
Catégorie : Programming & Design
Par : ali v
What are the IT/Programmers people doing the whole day at there offices?
Hello everyone, I have some programming experience, so I have a taste for what a program is, and I like mathematics/physics too. I always ask myself what are the people who call their selves programmers/IT managers etc… doing the whole day at their offices? Can someone please give me few examples of what they are doing, or let’s assume that I’m one of them (not senior sure, but a beginner), give me few examples of the projects or the work that I must do at such offices. Take Yahoo for an example what are the employees doing the whole day their? Are they solving mathematical equations (Linear Algebra, Differential Equations, Integration etc…) or are their many other things to do? Which skills should someone have to enroll in such offices, I have heard mathematics, but which kind of mathematics? Are all of those people who calls their selves programmers (or work in such offices) really good in mathematics and algorithms? Or is there other kind of work that is not based on mathematics and algorithms? What are managers? (economically and software) Please give explanations, books recommendations for self study, to become such one.
Catégorie : Programming & Design
Par : skyflowers
what website can i see movies in?

Catégorie : Programming & Design
Par : nathaly l
C++ file sorting problem?
Please Help me with this C++ problem quick. A file grade.txt (available on Blackboard) is given to you. It contains 20 rows and two columns of data. The left column is the student ID number, and the right column is the corresponding student grade (a floating point number). Write a program that reads from this file and sort the given data according to the following requirements. First, sort the given data with respect to the student ID number in ascending order (i.e., from lowest to highest) and output to a file gradelistA.txt which has two columns with the left column being the ID number and the right column being the student grade. Second, sort the given data with respect to the student grade in descending order (i.e., from highest to lowest) and output to a file gradelistB.txt with two columns. (Note that when the ID numbers are reordered, the grades should be reordered correspondingly so that a student’s grade is still matching his/her ID in the same row). Here is what I got so far... #include #include using namespace std; const int size = 20; void sortA(int ID[], float grade[]); void sortB(int ID[], float grade[]); int main() { ifstream inData; ofstream outData; int ID[size]; float grade[size]; inData.open("C:\\docs\\grade.txt"); outData.open("C:\\docs\\gradelistA"); // Reading raw data for(int i = 0; i < size; i++) inData >> ID[i] >> grade[i]; sortA(ID, grade); for(int i = 0; i < size; i++) outData << ID[i] << " " << grade[i] << endl; inData.close(); outData.close(); outData.open("C:\\docs\\gradelistB"); // Reading raw data for(int i = 0; i < size; i++) inData >> ID[i] >> grade[i]; sortB(ID, grade); for(int i = 0; i < size; i++) outData << ID[i] << " " << grade[i] << endl; outData.close(); return 0; } ////////////////////////////////////////////////////////////////////////// // This function, sortA, puts the ID numbers in ascending order. ////////////////////////////////////////////////////////////////////////// void sortA (int idnum[], float gradevalue[]) { bool swap; int index; float gradetemp; int idtemp; do { swap = false; for(index = 0; index < size - 1; index++); { if(idnum[index] > idnum[index + 1]) { idtemp = idnum[index]; idnum[index] = idnum[index + 1]; idnum[index + 1] = idtemp; swap = true; gradetemp = gradevalue[index]; gradevalue[index] = gradevalue[index + 1]; gradevalue[index + 1] = gradetemp; swap = true; } } } while(swap); } /////////////////////////////////////////////////////////////////// // This function, sortB, puts the grades in descending order. /////////////////////////////////////////////////////////////////// void sortB (int idnum[], float gradevalue[]) { bool swap; int index; float gradetemp; int idtemp; do { swap = false; for(index = 0; index < size + 1; index++); { if(idnum[index] < idnum[index + 1]) { gradetemp = gradevalue[index]; gradevalue[index] = gradevalue[index + 1]; gradevalue[index + 1] = gradetemp; swap = true; idtemp = idnum[index]; idnum[index] = idnum[index + 1]; idnum[index + 1] = idtemp; swap = true; } } } while(swap); }
Catégorie : Programming & Design
Par : abotsch31
backward chaining with backtracking AI?
clauses below: edge(A,B). edge(A,C). reachable(A). reachable(x) ← edge(y, x), reachable(y). use backward chaining with backtracking to explain how one can obtain all the alternative solutions for the goal reachable(x). please help
Catégorie : Programming & Design
Par : ali v
Help with in clause in sql?
I have the following in clause: select * from student_courses where courses in {cs242,cs243,cs254} The in clause only checks to see if the course is in cs242 or cs243 or cs254. so if only one matches that student id is shown. Is there a replacement to the in clause that checks all what is inside. That is a student taking all of cs242 and cs243 and cs254. Thanks.
Catégorie : Programming & Design
Par : squash
Im new to 3D design...HELP!?
hi guys, im considering pursuing a career in 3D design or something close to it but having to relate to computers. I honestly don't know where to even start and i was wondering if any of you guys had some ideas for programs that might help me just get the feel of it. Any help is appreciated. Thanks
Catégorie : Programming & Design
Par : Papa Smurf

Page suivante







| | | | Top question | hot trends | Mes sites Catégories

Accordeon | Achat | Acteur | Actualite | Acupuncture | ADSL | Aeronautique | Aeroport | Affiche | Affiliation | Afrique | Agencement | Agriculture | Agroalimentaire | Alarme | Algerie | Alimentation | Allergie | Alpinisme | Alsace | Ameublement | Annonce | Annuaire | Baby Foot | Banque | Barbecue |Basketball | BD | Beaute | Bebe | Bibliotehque | Bijoux | Billard | Blog | Brasserie | Buzz | Cabaret | Camping | Casino | Chanteuse | Chasse | Chaussure | Cheminee | Chrome | Cinema | Coiffure | Coloriage | Comparateur de prix | Comptable | Cosmetique | Credit | Crocs | CSS | CV | Danse | Decolletage | Decorateur | Decoration | Demenagement | Depot Vente | Discotheque | Discount | Droit | DVD | Ebeniste | Ecole ESC | Ecologie | Edition | Emoticone | Emploi | Emule | Environnement | Fantasy | Festival | Festival BD | Festival Cinema | Festival Theatre | Film | Fleshlight | Fleuriste | Football | Garage | Gastronomie | Genealogie | Gestion | Gite | Golf | Gratuit | Guitare | Handball | Handisport | Harry Potter | Hifi | Hip Hop | Hockey | Horoscope | Hotel | Ile | Image | Immobilier | Impot | Imprimerie | Infographie | Informatique | Inginerie | iPod | Jaquette | Jardinage | Jazz | Jeu | Joaillerie | Jouet | Journal | Journee Internationale | Kakuro | Karaoke | Karate | Karting | Kayak | Kitesurf | Kit Graphique | Koh Lanta | Librairie | Lingerie | Literie | Litterature | Livre | Location | Logiciel | Lunette | Marseille | Menuiserie | Meteo | Montre | Motocross | MP3 | Musique | Mythologie | Nabaztag | Nature | Nautisme | NHL | Nintendo | Noel | Notaire | Nouvelle Star | Numerologie | Occasion | Oenologie | Opera | Optique | Orchestre | Orthopedie | Parahutisme | Parapharmacie | Parfum | Photo | Poker | Poussette | Presentatrice | Pronostic | PS3 | Quad | Quebec | Quincaillerie | Quinte | Randonnee | Recette | Refrigerateur | Remi Gaillard | Rencontre | Rugby | Second Life | Secretaire | Sexe | Vod | Sextoy | Sport | Star Academy | Sudoku | Television | Tintin | Torrent | Toulon | Transport | Tunisie | ULM | Universite | Urbanisme | USA | Var | Video | Visseuse | Vod | Voiture sans permis | Volley Ball | Voyage | VPC | Wii | World of Warcraft | XboX | Yachting | Zoo




0.73186802864075