Différences entre les versions de « Modèle:Code »
De Paint
m (1 révision importée) |
toross>Atoross |
||
Ligne 1 : | Ligne 1 : | ||
<includeonly>{{ | <includeonly>{{AtIfNotNul|{{{line|}}}|{{#tag:syntaxhighlight|{{{code|}}}|lang={{{lang|text}}}|style="border:1px solid #e0e0e0;padding:0em;margin:0.0em;{{AtIfNotNul|{{{colNb|}}}|width:{{{colNb|}}}ch;|width:auto;}}"|line=|lineStart={{{lineStart|1}}}}}|{{#tag:syntaxhighlight|{{{code|}}}|lang={{{lang|text}}}|style="border:1px solid #e0e0e0;padding:0em;margin:0.25em;{{AtIfNotNul|{{{colNb|}}}|width:{{{colNb|}}}ch;|width:auto;}}"}}}} | ||
</includeonly><noinclude> | |||
{{Model | {{Model | ||
|class=lang | |class=lang | ||
|texte=Ce modèle sert présenter un code programmation. | |texte=Ce modèle sert présenter un code programmation. | ||
|auteurs= | |auteurs= | ||
|syntaxe=<nowiki>{{code|lang=|code=}}</nowiki> | |syntaxe=<nowiki>{{code|lang=|code=}}</nowiki> | ||
|specification= | |specification= | ||
;lang= | ;lang= | ||
:c++ php … | :c++ php … | ||
;code= | ;code= | ||
: le code | : le code | ||
; colNb | ; colNb | ||
Ligne 34 : | Ligne 35 : | ||
}; | }; | ||
int main( int argc, char * argv[] ) | int main( int argc, char * argv[] ) | ||
{ | { | ||
time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); | time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); | ||
} | } | ||
}} | }} | ||
}}</nowiki> | }}</nowiki> | ||
<nowiki>{{parW|1= | <nowiki>{{parW|1= | ||
{{code|lang=cpp|code= | {{code|lang=cpp|colNb=86|code= | ||
#2345678901234567890123456789012345678901234567890123456789012345678901234567890 | #2345678901234567890123456789012345678901234567890123456789012345678901234567890 | ||
# 1 2 3 4 5 6 7 8 | # 1 2 3 4 5 6 7 8 | ||
Ligne 63 : | Ligne 64 : | ||
donnera : | donnera : | ||
{{code|colNb=86|line='line'|lineStart=13|lang=cpp|code= | |||
{{code|colNb= | |||
#2345678901234567890123456789012345678901234567890123456789012345678901234567890 | #2345678901234567890123456789012345678901234567890123456789012345678901234567890 | ||
# 1 2 3 4 5 6 7 8 | # 1 2 3 4 5 6 7 8 | ||
Ligne 81 : | Ligne 81 : | ||
time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); | time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); | ||
} | } | ||
}} | }} | ||
{{code|lang=cpp|colNb=80|code= | |||
{{code|lang=cpp|code= | |||
#2345678901234567890123456789012345678901234567890123456789012345678901234567890 | #2345678901234567890123456789012345678901234567890123456789012345678901234567890 | ||
# 1 2 3 4 5 6 7 8 | # 1 2 3 4 5 6 7 8 | ||
Ligne 103 : | Ligne 101 : | ||
} | } | ||
}} | }} | ||
</noinclude> | </noinclude> |
Version du 26 mars 2021 à 13:46
Version : 1.36.1 2211 (2021-03-26) 20210326134608
Résumé :
Ce modèle sert présenter un code programmation.
{{code|lang=|code=}}
- lang=
- c++ php …
- code=
- le code
- colNb
- nombre de caractères en largeur (nombre de colonnes)
- line
- active la numérotation, mettre n'importe quelle valeur
- lineStart
- numéro de ligne de départ, par défaut 1
Exemple :
{{parW|1= {{code|colNb=80|lang=cpp|code= #2345678901234567890123456789012345678901234567890123456789012345678901234567890 # 1 2 3 4 5 6 7 8 #include <time.h> #include <stdio.h> void sleep( time_t nb_sec ) { time_t limit, top; time(&top); limit = top + nb_sec ; while (top < limit) { time(&top); } }; int main( int argc, char * argv[] ) { time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); } }} }} {{parW|1= {{code|lang=cpp|colNb=86|code= #2345678901234567890123456789012345678901234567890123456789012345678901234567890 # 1 2 3 4 5 6 7 8 #include <time.h> #include <stdio.h> void sleep( time_t nb_sec ) { time_t limit, top; time(&top); limit = top + nb_sec ; while (top < limit) { time(&top); } }; int main( int argc, char * argv[] ) { time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start)); } }} }}
donnera :
#2345678901234567890123456789012345678901234567890123456789012345678901234567890
# 1 2 3 4 5 6 7 8
#include <time.h>
#include <stdio.h>
void sleep( time_t nb_sec )
{
time_t limit, top; time(&top); limit = top + nb_sec ;
while (top < limit)
{
time(&top);
}
};
int main( int argc, char * argv[] )
{
time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start));
}
#2345678901234567890123456789012345678901234567890123456789012345678901234567890
# 1 2 3 4 5 6 7 8
#include <time.h>
#include <stdio.h>
void sleep( time_t nb_sec )
{
time_t limit, top; time(&top); limit = top + nb_sec ;
while (top < limit)
{
time(&top);
}
};
int main( int argc, char * argv[] )
{
time_t start, stop; time(&start); sleep( 5 ) ; time(&stop); printf("start : %ld\n",start ); printf("stop : %ld\n",stop ); printf("in seconds: %f\n",difftime(stop,start));
}