Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- int main() {
- int n, m;
- scanf("%d%d", &n, &m);
- int mat[n][m];
- for(int i = 0; i < n; i++) {
- for(int j = 0; j < m; j++) {
- scanf("%d", &mat[i][j]);
- }
- }
- int brojac = 1;
- int rezultat = 0;
- for(int i = 0; i < n; i++) {
- int ok = 1;
- for(int j = 0; j < m; j++) {
- if(mat[i][j] >= brojac && mat[i][j] < brojac * 10) {
- }
- else {
- ok = 0;
- }
- }
- if(ok == 1) {
- rezultat++;
- for(int j = 0; j < m; j++) {
- printf("%d ", mat[i][j]);
- }
- printf("\n");
- }
- brojac *= 10;
- }
- if(rezultat == 0) {
- printf("Nitu edna redica ne go ispolnuva uslovot\n");
- }
- else {
- printf("%d\n", rezultat);
- }
- }
- /*
- 4 4
- 1 2 7 9
- 17 22 13 10
- 26 255 25 124
- 1134 1120 5566 9900
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement