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...
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...
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...

jeudi 21 mars 2013

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