Visual-Studio-C-code-Computer-Science-Question-help

Please review the following code below. List and discuss at least three reasons to why you believe the code is poorly formatted. Once you have identified any formatting issues, rewrite the program to include what you believe to be accurate.  Feel free to run the code in Visual Studio C++ to see the output. (100 points)

#include

int main()

{

int x1, x2, x3;

  printf(“Centigrade to Fahrenheit temperature tablenn”);

  for(x1 = -2 ; x1 <= 12 ; x1 = x1 + 1)

  {

  x3 = 10 * x1;

  x2 = 32 + (x3 * 9) / 5;

  printf(”  C =%4d  F =%4d  “, x3, x2);

  if (x3 == 0)

  printf(” Freezing point of water”);

  if (x3 == 100)

  printf(” Boiling point of water”);

  printf(“n”);

  }

  return 0;

}

 
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount!
Use Discount Code "Newclient" for a 15% Discount!

NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.