Posted on 1 Comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

#include <iostream>
#include <iomanip> 
 
void main( ) {
  int x1=123,x2= 234, x3=789;
  cout << setw(8) << "Exforsys" << setw(20) << "Values" << endl
  << setw(8) << "test123" << setw(20)<< x1 << endl
  << setw(8) << "exam234" << setw(20)<< x2 << endl
  << setw(8) << "result789" << setw(20)<< x3 << endl;
}

1 thought on “Hello world!

  1. Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Leave a Reply to A WordPress Commenter Cancel reply

Your email address will not be published. Required fields are marked *