This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#coding:latin | |
"""Autômatos finitos. | |
Desenvolvido para a disciplina de Linguagens Formais, Autômatos e Computabilidade. | |
UTFPR-CM (2015-2) | |
Professor: Marco Aurélio Graciotto Silva | |
Aluno:Felipe V. Ramos | |
RA:1061461 | |
Aluno:Vitorio M. P. Cilia | |
RA:1648756 | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(int argc,char* argv[] ) | |
{ | |
int n = atoi(argv[1]); | |
int i=0; | |
for(; i < sizeof( int ) * 8 ; i++, n <<= 1 ) | |
{ |