-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnomi.c
69 lines (47 loc) · 1.2 KB
/
nomi.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
Un programma legge dall'utente una serie di nomi di persona. L'inserimento termina qualdo
l'utente immette il nome fasullo *.
Il programma dovrà stampare:
1.quanti nomi sono stati inseriti
2.qual è il nome che, nell'ordine alfabetico, verrebbe per primo
3.qual è il nome più lungo, e di quanti caratteri è composto
*/
#include <stdio.h>
#include <string.h>
#define mx 20
int main () {
char nome[mx];
int tot=0; //totale inserimenti
char primo[mx];
char lungo[mx];
int dimpiulungo=0;
int stop=0; //flag
//input
do {
printf("Inserisci un nome: \n");
scanf("%s",nome);
if(strcmp(nome,"*")==0) {
stop=1;
}
if(stop==0) {
if(tot==0) {
strcpy(primo,nome);
strcpy(lungo,nome);
dimpiulungo = strlen(nome);
tot++;
}else {
if(strcmp(nome,primo)<0) {
strcpy(primo,nome);
}
if(strlen(nome) > dimpiulungo) {
dimpiulungo=strlen(nome);
strcpy(lungo,nome);
}
tot++;
}
}
}while(stop!=1);
printf("Il nome più lungo e' %s ed e' composto da %d caratteri \n",lungo,dimpiulungo );
printf("Il primo nome e' %s \n",primo );
printf("Il nomi totali inseriti sono: %d \n",tot );
}