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

0 commentaires:

Enregistrer un commentaire

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