i made a program which gives a cross pattern of symbol (*) as a n output in 5 rows and 5 columns. what's the error here? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

i made a program which gives a cross pattern of symbol (*) as a n output in 5 rows and 5 columns. what's the error here?

#include <iostream> using namespace std; int main() { int i,j; for(i=1;i<=5;i++){ for(i=1;i<=5;j++){ if(i==j||(i+j==6)){ cout<<"*"; else cout<<" "; } } cout<<endl; } return 0; }

11th Jan 2020, 5:06 PM
Ariz imam
Ariz imam - avatar
5 Respostas
+ 2
Ariz imam , It'll work with little modifications. See the inner for loop. It's syntactically correct but logically wrong. you was supposed to use j instead of i for initializiation,condition and increment this line: for(i=1;i<=5;j++) should be for(j=1;j<=5;j++) next problem is mismatched if and else. see that you have used curly braces after outermost if condition. Inside these braces you have an else clause which has no matching if. so it fails to compile. To fix this either remove {} of outer if or match them properly as follows : if( i==j || (i+j==6) ){ cout<<"*"; }else{ cout<<" "; } Keep practicing and always try your best to debug before you ask others :)
11th Jan 2020, 5:21 PM
šŸ‡®šŸ‡³OmkaršŸ•‰
šŸ‡®šŸ‡³OmkaršŸ•‰ - avatar
+ 3
In addition to šŸ‡®šŸ‡³OmkaršŸ•‰ fixes, next time include a link to your code in your question. It makes it easier for us to run your code, prevents errors in our version verses yours, and lets us describe the issues with line numbers so you can see exactly what we see. You can use the plus sign within the circle icon to insert your code or share the code, copy to clipboard, and paste the link.
11th Jan 2020, 5:27 PM
John Wells
John Wells - avatar
+ 1
thanks šŸ‡®šŸ‡³OmkaršŸ•‰ for finding the error of inner loop for j.. yes i mistyped it and was too dumb not to check it.. although i did check but couldn't spot that silly mistake... and parenthesis removed for if else statement making the code easier..
11th Jan 2020, 5:27 PM
Ariz imam
Ariz imam - avatar
+ 1
ok John Wells will do it from next time..
11th Jan 2020, 5:28 PM
Ariz imam
Ariz imam - avatar
21st Jul 2020, 12:50 AM
shubham kumar
shubham kumar - avatar