Informática, perguntado por Anynonimous, 5 meses atrás

Escreva um programa que imprime os seguintes dados na tela:
OBS: LINGUAGEM C

1-1 1-2 1-3 1-4 1-5

2-1 2-2 2-3 2-4 2-5

3-1 3-2 3-3 3-4 3-5

4-1 4-2 4-3 4-4 4-5

5-1 5-2 5-3 5-4 5-5


ME AJUDEM PFVRR

Soluções para a tarefa

Respondido por AndersonFostinger
2

Resposta:

#include<stdio.h>

int main(){

   int i, j;

   for(i = 1; i <= 5; i++){

       for(j = 1; j <= 5; j++){

           printf("%d-%d ", i, j);

       }

       printf("\n\n");

   }

   return 0;

}


Anynonimous: obgg
Perguntas interessantes