Default Avatar

thedaddfromtn2005

thedaddfromtn2005

About

Username
thedaddfromtn2005
Joined
Visits
0
Last Active
Roles
Member

Comments

  • int *n = new int[60]; int avg = 0; int count = 0; for (int x = 0; x < 60; x++) { cin >> (*n); if (! (*n)) break; *n++; } while (*n) { avg += (*n); count++; } avg /= count; printf("Avg…
  • int *n = new int[60]; int avg = 0; int count = 0; for (int x = 0; x < 60; x++) { cin >> (*n); if (! (*n)) break; *n++; } while (*n) { avg += (*n); count++; } avg /= count; printf("Avg…
  • The "lot of pixels" and "box-shaped" is due to stretching the image. Up-sizing an image stretches it, and the application has to make an attempt to fill in the pixels in between. That causes the pixelation. You can't enlarge an i…
  • The "lot of pixels" and "box-shaped" is due to stretching the image. Up-sizing an image stretches it, and the application has to make an attempt to fill in the pixels in between. That causes the pixelation. You can't enlarge an i…
  • The "lot of pixels" and "box-shaped" is due to stretching the image. Up-sizing an image stretches it, and the application has to make an attempt to fill in the pixels in between. That causes the pixelation. You can't enlarge an i…