Created
March 10, 2015 13:50
-
-
Save nobodyguy/e8d7c539c53e34bb63cc to your computer and use it in GitHub Desktop.
KPC2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
printf("Temperature table:\n\n\t "); | |
n=0; | |
while (mon[n]!='\0') | |
{ | |
if (mon[n]==',') | |
printf(" "); | |
else | |
printf("%c", mon[n]); | |
n++; | |
} | |
printf("\n"); | |
for (int i = 0; i < 16; i++) | |
{ | |
printf("%d: ", styear+i); | |
for (int j = 0; j < 12; j++) | |
{ | |
printf("%6.1f", temp[i][j]); | |
} | |
printf("\n"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment