Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(void){
- /*DICHIARO LE VARIABILI*/
- int x,y,d;
- printf("inserisci due interi\n");
- printf("inserisci un intero tra 0 e 9\n");
- if (scanf("%d%d",&x,&y)!=2){ /*VERIFICO CHE I DATI INSERITI SIANO CORRETTI*/
- printf("le due cifre che hai inserito non sono interi\n");
- return 1;
- }
- if (scanf("%d",&d)!=1 || d<0 || d>9){
- printf("la cifra che hai inserito o non e' un intero o non e' compresa tra 0 e 9\n");
- return 1;
- }
- /* CREO UN CICLO WHILE PER VERIFICARE LA CONDIZIONE UTILIZZANDO IL RESTO DELLA DIVISIONE PER 10,SIA PER X CHE PER Y*/
- while (x!=0){
- if(x%10==d){
- x=1;
- break;
- }
- else
- x=x/10;
- }
- while (y!=0){
- if(y%10==d){
- y=1;
- break;
- }
- else
- y=y/10;
- }
- /*STAMPO A SCHERMO IL RISULTATO*/
- if (x==1 && y==1)
- printf("la condizione e' verificata\n");
- else
- printf("la condizione non e' verificata\n");
- return 0;
- }
Add Comment
Please, Sign In to add comment