Advertisement
Guest User

Untitled

a guest
Mar 1st, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # include <stdio.h>
  2. int main()
  3. {
  4. float a,b,c,d,e,f;
  5. scanf ("%f %f %f %f %f %f", &a, &b, &c, &d, &e, &f);
  6. system("cls");
  7. printf ("\t\t|=========|=========|\n\t\t|%-9.0f|%9.0f|\n\t\t|%-9.0f|%9.3f|\n\t\t|%-9.0f|%9.2f|\n",a,b,c,d,e,f);
  8. system("pause");
  9. return(0);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement