Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: reverse an array using pointers in c++ 
Cpp :: random in range c++ 
Cpp :: newline in c++ 
Cpp :: do you need inline for template in C++ 
Cpp :: qstring get if empty 
Cpp :: how can I replace a pattern from string in c++ 
Cpp :: xmake set exe name 
Cpp :: std cout c++ 
Cpp :: c++ random number generator uniform distribution 
Cpp :: how to access struct variables in c++ 
Cpp :: how to display a variable in c++ 
Cpp :: vector of int to string c++ 
Cpp :: how to make crypto 
Cpp :: easy c++ code 
Cpp :: iterate vector from end to begin 
Cpp :: create a dictionary cpp 
Cpp :: c++ initialize array with all zeros 
Cpp :: C++ convert vector of digits into integer 
Cpp :: g++ optimization flags 
Cpp :: count word accurances in a string c++ 
Cpp :: c++ compare time 
Cpp :: chrono library c++ 
Cpp :: c++ struct with default values 
Cpp :: c++ nested switch statements 
Cpp :: c++ int main() 
Cpp :: how to pass function as a parameter in c++ 
Cpp :: not in c++ 
Cpp :: iterate over 2 vectors c++ 
Cpp :: 1d array 
Cpp :: matrix in vector c++ 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =