Esercizio 2 della verifica

#include <stdio.h>
int d=0,resto;
char schema[]={
'|','|','|','|','|','|',
' ','|','|','|','|',' ',
' ',' ','|','|',' ',' ',
' ',' ',' ','|',' ',' ',};

int main()
{
for(d=0;d<28;d++){
resto=d%7;
if(resto!=0){
printf("%c",schema[d]);
}
else{
     printf("\n%c",schema[d]);
}
}
}

es2

Commenti

Posta un commento