Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as Plain Text by Print Heart ( 13 years ago )
#include<stdio.h>
int main(void)
{

    int i,j,k;

    for(i=0,k=11;i<=90;i+=10,k+=10)
    {
        printf("\r\t\t\t");
            for(j=i;j<k;j++)
                if((j==13||j==17)||(j>=22&&j<=24)||(j>=26&&j<=28)||(j>=31 &&j<=39)||(j>=41&&j<=49)||
                (j>=52&&j<=58)||(j>=63&&j<=67)||(j>=74&&j<=76)||(j==85))
                {
                    printf("*");
                }
                else
                {
                    printf(".");
                }
                printf("\n");
    }
    printf("\r\t\t    ");
    printf("\n");

}

 

Revise this Paste

Parent: 69235
Your Name: Code Language: