Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* versão com o uso da função strcmp da biblioteca
- (não aceita, pois deve-se elaborar o algoritmo)
- #include <stdio.h>
- #include <string.h>
- #define MAX_CAR 51
- int main() {
- char nome1[MAX_NOMES], nome2[MAX_CAR];
- printf("Digite os dois nomes:\n");
- gets(nome1);
- gets(nome2);
- if(strcmp(nome1,nome2)==0)
- printf("iguais")
- else
- printf("diferente")
- return 0;
- }
- */
- // Esta versão está ok:
- #include <stdio.h>
- #define MAX_CAR 51
- int main() {
- char nome1[MAX_CAR], nome2[MAX_CAR];
- printf("Digite os dois nomes:\n");
- gets(nome1);
- gets(nome2);
- int i;
- int diferente = 0; // flag para indicar se achou algum par diferente
- for(i=0; nome1[i]!='\0' || nome2[i]!='\0'; i++){
- if(nome1[i]!=nome2[i]) {
- diferente = 1;
- break;
- }
- }
- if(diferente == 0)
- printf("Iguais");
- else
- printf("Diferentes");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement