Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <conio.h>
- #include <time.h>
- int main()
- {
- const char *litery_male[] = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","r","s","t","u","w","y","z"};
- int cyfry[] = {0,1,2,3,4,5,6,7,8,9};
- int i = 0;
- int j = 0;
- for(i = 0; i < 10; i++)
- {
- dalej:;
- printf("%s%d\n", litery_male[0+j],cyfry[i]);
- if(*litery_male == "z")
- printf("break\n");
- if(cyfry[i] == 9 )
- {
- j++;
- i=0;
- goto dalej;
- }
- }
- getch();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment