Answers for "table c++"

C++
17

how to make an array c++

int foo [] = { 16, 2, 77, 40, 12071 };
Posted by: Guest on March-27-2020
0

table c++

#include <iostream>
using namespace std;
int main()
{
    int rows,columns;

    for (rows = 1; rows <= 6; rows++)
    {
        
        for (columns = 1; columns <= 6; columns++)
        {
            cout << columns;
        }
        
        cout << "\n";
    }
    
    
    return 0;
}
Posted by: Guest on September-08-2021

Browse Popular Code Answers by Language