Can anyone tell me about logical operators | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can anyone tell me about logical operators

14th Nov 2016, 6:47 AM
Samhita Joshi
Samhita Joshi - avatar
11 Answers
+ 3
Hello @cyreen here your code however, it is using pattern not graphics so if you want this program using graphics then i am sorry for that. But using pattern here it is: #include <iostream> using namespace std; void constructTriangle(int h) { int i,j,k,l,m; cout<<endl<<endl; for (i=h;i>0;i--) { for (k=0;k<i;k++) { cout<<" "; } for(j=h;j>=i;j--) { cout<<"*"; } for (m=h;m>i;m--) { cout<<"*"; } for (l=0;l<i;l++) { cout<<" "; } cout<<endl; } } int main() { int height; cout<<"Enter height of triangle:"; cin>>height; constructTriangle(height); return 0; }
15th Nov 2016, 8:38 AM
Vishal Koshti
Vishal Koshti - avatar
+ 2
Here is the complete information for logical operator in c++: https://www.tutorialspoint.com/cplusplus/cpp_operators.htm
14th Nov 2016, 7:05 AM
Vishal Koshti
Vishal Koshti - avatar
+ 2
Try code blocks its a great c/c++ compiler also it has gnu gcc compiler.
14th Nov 2016, 7:21 AM
Vishal Koshti
Vishal Koshti - avatar
+ 2
If you need any help feel free to ask.
14th Nov 2016, 8:30 AM
Vishal Koshti
Vishal Koshti - avatar
+ 2
You're Welcome @cyreen
15th Nov 2016, 9:02 AM
Vishal Koshti
Vishal Koshti - avatar
+ 1
thanks
14th Nov 2016, 7:19 AM
Samhita Joshi
Samhita Joshi - avatar
+ 1
how to download gnu c++ compiler
14th Nov 2016, 7:20 AM
Samhita Joshi
Samhita Joshi - avatar
+ 1
welcome
14th Nov 2016, 7:22 AM
Vishal Koshti
Vishal Koshti - avatar
+ 1
can you help me please? i want to write c++ program with function that recive the hight of triangle then draw it 🌸🌹
15th Nov 2016, 8:02 AM
cyreen
cyreen - avatar
+ 1
Thank you very much Vishal 😘❤
15th Nov 2016, 8:47 AM
cyreen
cyreen - avatar
+ 1
Thank you again vishal I've tried it and worked 💋❤😘
15th Nov 2016, 9:07 AM
cyreen
cyreen - avatar