dimanche 31 mars 2013


Exercice avec solution  en c++  : 

Ecrire un programme en c++ qui fait la soustraction de deux matrices .


Solution : 

#include<iostream.h>
main()
{i
nt i,j;
int a[3][3];
int b[3][3];
int c[3][3];
cout<<"enter first matrixs"<<"\n";
for(i=0;i<3;i++)
for(j=0;j<3;j++)
cin>>a[i][j];
cout<<"enter second matrixs"<<"\n";
Step By step to Learn C or C++ Example 22
for(i=0;i<3;i++)
for(j=0;j<3;j++)
cin>>b[i][j];
for(i=0;i<3;i++){
cout<<"\n";
for(j=0;j<3;j++){
c[i][j]=a[i][j]-b[i][j];
cout<<c[i][j]<<"\t";}
}}


----------------------------------------------------
apprendre C++ facilement et rapidement - exercices c++
Exercice avec solution en c++ : 

Ecrire un programme qui fait l'addition de deux matrices entrer par le clavier .


Solution : 

#include<iostream.h>
main()
{i
nt i,j;
int a[3][3];
int b[3][3];
int c[3][3];
cout<<"enter first matrixs"<<"\n";
for(i=0;i<3;i++)
for(j=0;j<3;j++)
cin>>a[i][j];
cout<<"enter second matrixs"<<"\n";
for(i=0;i<3;i++)
for(j=0;j<3;j++)
cin>>b[i][j];
for(i=0;i<3;i++){
cout<<"\n";
for(j=0;j<3;j++){
c[i][j]=a[i][j]+b[i][j];
cout<<c[i][j]<<"\t";}
}}

Exercice avec solution en c++ : 

Ecrire un programme en C++ qui calcule la multiplication d'une matrice avec un réel .



Solution : 

#include<iostream.h>
main()
{i
nt i,j;
int a[3][3];
cout<<"enter matrixs\n" ;
for(i=0;i<3;i++)
for(j=0;j<3;j++)
cin>>a[i][j];
for(i=0;i<3;i++){
cout<<"\n";
for(j=0;j<3;j++){
a[i][j]=2*a[i][j];
cout<<a[i][j]<<"\t" ;}}}



samedi 23 mars 2013


Exercice corrigé en html : 




Solution : 

1)  <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>corrige exo1</title>
</head>
<body>
<p><form name=monformulaire>
<table BORDER WIDTH="300" HEIGHT="125" >
<tr>
<td><input type=button value= Nom ></td>
<td><input type=text name=nom size=20></td>
</tr>
<tr>
<td><input type=button value= Telephone ></td>
<td><input type=text name=tel size=20></td>
</tr>
<tr>
<td><input type=button value= Adresse ></td>
<td><input type=text name=adresse size=20></td>
</tr>
</table>
</form>
</BODY>
</HTML>


2)  <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>corrige exo 1 - 2°</title>
</head>
<FRAMESET cols="40%,*">
<frame name=questionnaire src=quest.html>
<frame name=reponse src=rep.html>
</FRAMESET>
</HTML>

2-2)  <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>corrige exo2 questionnaire</title>
</head>
<body>
<p><form name=monformulaire>
<table BORDER WIDTH="300" HEIGHT="125" >
<tr>
<td><input type=button value= Nom onclick="alert(document.monformulaire.nom.value);"></td>
<td><input type=text name=nom size=20 value=''></td>
</tr>
<tr>
<td><input type=button value=Telephone onclick="alert(document.monformulaire.tel.value);"></td>
<td><input type=text name=tel value='' ” size=20></td>
</tr>
<tr>
<td><input type=button value= Adresse onclick="alert(document.monformulaire.adresse.value);"></td>
<td><input type=text name=adresse value='' size=20></td>
</tr>
</table>
<center>
<input type=button value=valider
onClick="window.parent.reponse.document.write('nom =', document.monformulaire.nom.value);
window.parent.reponse.document.write('<P>adresse=', document.monformulaire.adresse.value);
window.parent.reponse.document.write('</P><P>telephone=',document.monformulaire.tel.value);
window.parent.reponse.document.write('</P>');">
</form>
</BODY> </HTML>

3 ) <html>
<head>
<title>corrige exo2 reponse</title>
</head>
<body></BODY>
</HTML>

jeudi 21 mars 2013


Exercice en Sql  : 


Exercice Sql

Copyright © 2013 Exercices Langages de Programmation | Powered by Blogger
Design by Theme Junkie
Blogger Template by Lasantha | PremiumBloggerTemplates.com