CREARE UN FILE DI TESTO CONTENENTE TUTTE LE LETTER DELL'ALFABETO, CON UNA DISPOSIZIONE "A TRIANGOLO" | |
Links Francesco Nicolò | #include < stdio.h > #include < conio.h > int main () { int i,j,temp; FILE *fp; fp=fopen("alfa.txt","w"); for(i=0;i<=25;i++) { for(j=-1 ; j < i ; j++) { printf("%c",i+'A'); temp=(i+'A'); fputc(temp,fp); } printf("\n"); temp='\n'; fputc(temp,fp); } fclose(fp); getch(); return 0; } |
INDICE
martedì 5 maggio 2009
INFORMATICA: LEZIONE DEL 28/04/09
Etichette:
informatica
Iscriviti a:
Commenti sul post (Atom)
Nessun commento:
Posta un commento