Try this: You do not have permission to view the full content of this post. Log in or register now.San po maganda iupload image? Need daw image url e
Diretso dito? Hindi pwede?San po maganda iupload image? Need daw image url e
Try this: You do not have permission to view the full content of this post. Log in or register now.
Diretso dito? Hindi pwede?
Anong problema sa images mo?
Need daw image url paps. Tapos inupload ko sa postimage.org di lumitawAnong problema sa images mo?
Upload file mo lang dito.
Ano instruction sa Machine problem na yan?You do not have permission to view the full content of this post. Log in or register now.
You do not have permission to view the full content of this post. Log in or register now.
Syensya na kung link sya
Or pwede makahinge nalang nang codes sa while loops and for loops papsAno instruction sa Machine problem na yan?
Output the calendar?
Okay naman yun. May idea ka na ng while loop.Example po nang while loops and for loops paps. Kahit anong code papo or example
Yung output ngapo panget hahaha. Baka may alam po kayo kung pano ilagay yun sa kabila paps?Okay naman yun. May idea ka na ng while loop.
Hindi lang maganda pagkakalagay ng code kaya hindi maayos ang output.
Kung gagamitin ko code mo dapat ganito yun.Yung output ngapo panget hahaha. Baka may alam po kayo kung pano ilagay yun sa kabila paps?
#include <iostream>
using namespace std;
int main()
{
int day = 1;
int month = 1;
int year = 2010;
cout << "Day\tMonth\tYear" << endl;
while(year <= 2018)
{
while(month <= 12)
{
while(day <= 31)
{
cout<< day << "\t" << month << "\t" << year << endl;
day++;
}
day = 1;
month++;
}
month = 1;
year++;
}
return 0;
}