17:55 Multiplication table in text file | |
//Note, this works only by GCC compiler #include <iostream> #include <fstream> using namespace std; #define r m int bazm(int x,int y){ return (x*y); } int main() { cout<<"Enter the quantity of numbers"<<endl; int m; cin>>m; ofstream out("out.txt"); int i, j; int a[r][r]; for (i=0;i<r;i++){ for (j=0;j<r;j++) a[i][j]=bazm(i,j); } for (i=0;i<r;i++){ out<<endl; for (j=0;j<r;j++) out<<i<<" * "<<j<<" = "<<a[i][j]<<endl; } cout<<"The result has been saved in out.txt"; return 0;} | |
|
Total comments: 0 | |