Canadian Computing Competition: 2001 Stage 1, Junior #1
It is important to keep our computers safe and clean. Some people feel that computers should be well-dressed, also. For this question, you will write a program to print out a bow tie on the computer screen.
Your program should take as input the height of the bow tie, where is an odd positive integer greater than or equal to 5. A bow tie with rows (and columns) should then be printed using the pattern shown below in the sample output.
Input Specification
One line containing integer . You may assume that all input data will be valid.
Sample Input 1
5
Sample Output 1
* *
*** ***
**********
*** ***
* *
Sample Input 2
7
Sample Output 2
* *
*** ***
***** *****
**************
***** *****
*** ***
* *
Comments
for those who are stuck on this question: split the tie into 3 parts:upper part, middle, and lower part for the middle part, it's just the whole line in the middle an easy way to solve the upper and lower part is to create 2 variables! also remember the while true function
wow i thought id get way more downvotes than just 1
This comment is hidden due to too much negative feedback. Show it anyway.
what if the input is an even number
It says that has to be an odd positive number on the third line so you will never get an even number.
sorry
My handsome little computer is getting fancy
lol
Wow I just made the world's most useless program
When I test my code off of the website, it displays the proper output, yet when it's published to the website, I get WA three times in a row. Does my output have to be printed all at once, or can each line be printed separately? I'm not sure if that is the problem.
You're printing an extra blank line both before the bowtie and after.