Computer Science, asked by karnamgowthami2003, 1 month ago

write a 'c program to give output
3 3 3 3 3
3 2 2 2 3
3 2 1 2 3
3 2 2 2 3
3 3 3 3 3
فر​

Answers

Answered by umarfarooqshafi6564
0

Answer:

#include <iostream>

int main()

{

   std::cout << "3 3 3 3 3\n"

                  << "3 2 2 2 3\n"

                  << "3 2 1 2 3\n"

                  << "3 2 2 2 3\n"

                 << "3 3 3 3 3\n"

                 << "فر";

 return 0;

}

Explanation:

Similar questions