Webkul 面试经历 |模式问题
**为下面给出的模式编写代码:-
*指示 :
?持续时间为 60 分钟
?模式必须是动态的。它应该适用于任何奇数。(不包括
1 和任何负数)
?它不应该运行偶数。
例子:
Input :For n=3
Output :
@@@
@
***
* *
* *
Input :For n=5
Output :
@@@@@
@@@
@
*****
* *
* *
* *
* *
CPP
int main()
{
int n,i,j;
printf("Enter Input:");
scanf("%d",&n);
if(n<1||n%2==1)
{
return 0;
}
for(i=0;i