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; }
Thank you for your comments!
Không có nhận xét nào:
Đăng nhận xét
Thank you for your comments!