#Code:
#include<iostream>
using namespace std;
int main()
{
int i, ans;
cout << "Four Times Table\n";
/* loop the process using "For loop" */
for(i=1; i<=10; i++)
{
cout << "4 X " << i << " = " << 4 * i << "\n";
}
return 0;
}
I very like the numbers zero and one.
#include<iostream>
using namespace std;
int main()
{
int i, ans;
cout << "Four Times Table\n";
/* loop the process using "For loop" */
for(i=1; i<=10; i++)
{
cout << "4 X " << i << " = " << 4 * i << "\n";
}
return 0;
}
0 Comment:
Đăng nhận xét
Thank you for your comments!