Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as Plain Text by ASDASDASD ( 13 years ago )
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) 
{
 int a[4][7],i=1,j=1,k=0;
 
  for (i=1;i<5;i++)
 {
 for(j=1;j<8;j++){
  
  
  printf("lutfen %d hafta %d gunun sicakliklarini  giriniz\n",i,j);
  scanf("%d",&a[i-1][j-1]);
  

 }
}
int z;


printf("\n\n");

printf("HAFTA\tPt\tSa\tCa\tPe\tCu\tCt\tPa\n");

for(z=0; z < 4; z++){
printf("%d.hafta\t%d\t%d\t%d\t%d\t%d\t%d\t%d\n",z+1,a[z][0],a[z][1],a[z][2],a[z][3],a[z][4],a[z][5],a[z][6] );
}

printf("\n\n");


 

 
 
 system&#40;"pause"&#41;; 
 return 0;
}

 

Revise this Paste

Your Name: Code Language: