Advertisement
Jordimario

lui2

Nov 8th, 2019
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.69 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAX 100
  4. #include <string.h>
  5.  
  6. void checksum(char str[]);
  7.  
  8. int main()
  9. {
  10.     char stringa[MAX];
  11.     printf("Hello world!\n");
  12.     checksum(gets(stringa));
  13.  
  14.     return 0;
  15. }
  16.  
  17. void checksum(char str[]){
  18.     int i=0;///indice stringa
  19.     int j;///indice pacchetto
  20.     int pack=strlen(str)/10;
  21.     char mat[MAX][MAX];
  22.  
  23.         for(j=0;j<pack;j++){
  24.                 for(i=0;i<10;i++){
  25.                     mat[i][j]=str[i+10*j];
  26.                 }
  27.         }
  28.  
  29.         for(j=0;j<pack;j++){
  30.                 printf("\nS%d",j);
  31.                 for(i=0;i<10;i++){
  32.                    printf("%c",mat[i][j]);
  33.                 }
  34.  
  35.         }
  36.  
  37.  
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement