Page 2 of 2 FirstFirst 12
Results 13 to 16 of 16

Thread: Square asterisk Program!

  1. #13
    Jk_Niazi is offline Junior Member
    Last Online
    13th April 2013 @ 12:12 PM
    Join Date
    13 Apr 2013
    Location
    Islamabad
    Age
    30
    Gender
    Male
    Posts
    3
    Threads
    0
    Credits
    0
    Thanked: 1

    Default Make your code smaller it will make ur program more efficent and do indentation

    This is my program it is doing same job as ur program but it s more efficient
    then one u made.There is lack of indentation in code,code without indentation is much hard to understand.

    #include "stdafx.h"
    #include<iostream>
    using namespace std;
    void main()
    {
    int n,m;
    for(n=1;n<=5;n++)
    {
    for(m=1;m<=5;m++)
    if(n==1||m==1||n==5||m==5)
    cout<<"*";
    else
    cout<<" ";
    cout<<endl;


    }
    system("pause");
    }

  2. #14
    Jk_Niazi is offline Junior Member
    Last Online
    13th April 2013 @ 12:12 PM
    Join Date
    13 Apr 2013
    Location
    Islamabad
    Age
    30
    Gender
    Male
    Posts
    3
    Threads
    0
    Credits
    0
    Thanked: 1

    Default

    This is my program it is doing same job as ur program but it s more efficient
    then one u made.There is lack of indentation in code,code without indentation is much hard to understand.

    #include "stdafx.h"
    #include<iostream>
    using namespace std;
    void main()
    {
    int n,m;
    for(n=1;n<=5;n++)
    {
    for(m=1;m<=5;m++)
    if(n==1||m==1||n==5||m==5)
    cout<<"*";
    else
    cout<<" ";
    cout<<endl;


    }
    system("pause");
    }

  3. #15
    ahmad733 is offline Junior Member
    Last Online
    7th July 2015 @ 09:53 PM
    Join Date
    26 Jun 2015
    Age
    30
    Gender
    Male
    Posts
    4
    Threads
    1
    Credits
    0
    Thanked
    0

    Smile


    Name: Ahmad raza
    from: okara
    Qualification: b.com now doing M.I.T
    mai it dunya ka nya member hn mujhe hal e mai ap k thread k bare mai pta chala hu moeed bhai mai c++ sikna chata hn plz meri tori madad karin.

  4. #16
    Arsalan 0.1's Avatar
    Arsalan 0.1 is offline Senior Member+
    Last Online
    19th April 2023 @ 11:37 PM
    Join Date
    15 Oct 2015
    Location
    Abbottabad
    Age
    28
    Gender
    Male
    Posts
    324
    Threads
    6
    Credits
    113
    Thanked
    6

    Default

    nyc

Page 2 of 2 FirstFirst 12

Similar Threads

  1. program plz 4
    By PREMkhan in forum Ask an Expert
    Replies: 1
    Last Post: 25th May 2010, 11:53 PM
  2. Share ur Eid Program
    By ussmaan in forum Baat cheet
    Replies: 3
    Last Post: 21st September 2009, 12:46 AM
  3. Replies: 8
    Last Post: 19th May 2009, 05:51 PM
  4. Accounts ke lye program konsa hai.PLZ URGENT REPLY ME
    By babarali552889 in forum Solved Problems (IT)
    Replies: 3
    Last Post: 24th June 2006, 04:49 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •