What's new

1 - 01 pahelp naman po

Status
Not open for further replies.

Mr White

Honorary Poster
Established
Joined
Sep 5, 2017
Posts
433
Solutions
1
Reaction
116
Points
240
pano ko po kaya magagawang 01 siya
7EA52487-271B-4C54-87CD-21CF86DAFDEB.jpeg


CE6239C3-8B6B-4655-BDB1-39826A822F43.jpeg
 

Attachments

C++:
#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
    
    for (int i = 1; i <= 100; i++)
    {
        cout << setw(2) << setfill('0') << i << " ";
        if (i%10 ==0)
        {
            cout << endl;
        }

    }
    return 0;
}

Not sure kung gagana.
 
Status
Not open for further replies.

Similar threads

Back
Top