V I S U A L I Z Z A D I S C U S S I O N E |
easley |
Inserito il - 05/05/2015 : 11:23:38 Dato un array di tipo 2d NxM,progettare una funcion di tipo logico che restituisca true se nessuno dei caratteri presenti in una riga è presente nella successiva,false altrimenti. . avevo pensato ad una cosa tipo: #include<iostream>
using namespace std;
int main(){ int r,c; cout<<"righe: "; cin>>r; cout<<"colonne: "; cin>>c; char a[r][c]; for(int i=0;i<r;i++){ for(int j=0;j<c;j++){ cin>>a[i][j];} } bool trovato; for(int i=0;i<c;i++){ for(int j=0;j<r;j++){ trovato=false; if( a[i][j]==a[i+1][j+1] || a[i+1][j]==a[i][j+1] || a[i][j]==a[i+1][j] || a[i][j+1]==a[i+1][j+1]){ trovato=true;} else trovato=false; } } if(trovato==false) cout<<"diversi"; else cout<<"valore uguale"<<endl;
system("pause"); }
ma nn sembra funzionare.Q_Q grazie in anticipo
|
|
|