Created
February 18, 2011 01:51
-
-
Save kaldas/833117 to your computer and use it in GitHub Desktop.
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
| /* Estrutura de Dados e Algoritmos 1 | |
| Prof. Marcelo Vasconcelos - GEC2010N | |
| Aluno: Rodrigo Caldas de Moura Duarte */ | |
| #include "stdio.h" | |
| #include "stdlib.h" | |
| int prmet(int z) | |
| { | |
| return prmet((7 * z % 11)); | |
| } | |
| int main() | |
| { | |
| prmet(1); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment