Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as C++ by Willy ( 15 years ago )
#include <iostream>

using namespace std;

int main()
{
 int i,j;
 
 for(i=1;i<=9;i++){
  for(j=1;j<=9;j++){
   cout<<i<<"*"<<j<<"="<<i*j<<"t";
  }
  cout << "n";
 }
        
 return 0;
}

 

Revise this Paste

Your Name: Code Language: