Answers for "c++ program to print tables from 1 to 10"

C++
1

print 5 table in c++

#include <iostream>
using namespace std;
int main(){
int num=1;
 
 for(num=1;num<=10;num++)
 cout<<"5*"<<num<<"="<<5*num<<endl;
}
Posted by: Guest on October-17-2021

Code answers related to "c++ program to print tables from 1 to 10"

Browse Popular Code Answers by Language