+ 1
Write a c++ code
101 010 101 it is out put
2 Respostas
+ 7
/*
##########################
## this code for you my friend ##
#########################
*/
#include <iostream>
using namespace std;
int main() {
cout << " 101 \n 010 \n 101";
return 0;
}
+ 1
what do you mean by 101 and 010? are they output too?
if yes,
#include <iostream.h>
void main()
{
cout << "101\n010\n101";
}