The Cargo arrangement
The Gocargo carriers have a pattern of arranging the cargos in the container. Given the length of edge of the container, print the cargo arrangement pattern in the container as shown in the sample IO. The base of the container is always a square.
Note: The Cargo are of unit length.
Input format :
The input is an integer that corresponds to the side length of the container.
Output Format:
Output is the cargo arrangement pattern inside the container.
Please refer to the sample output for formatting specifications.
Sample Input 1:
5
Sample Output 1:
####*++++
###***+++
##*****++
#*******+
*********
Sample Input 2:
3
Sample Output 2:
##*++
#***+
*****
n=int(input())
for i in range(0,n,1):
for j in range(i+1,n,1):
print("#",end="")
for k in range(0,2*i+1,1):
print("*",end="")
for l in range(n-1,i,-1):
print("+",end="")
print()
The Weight Detection SensorThe Gocargo carriers has planned to automate the filling of cargos in the container. They have installed a weight detection sensor in the conveyor belt where cargos will be taken to the container. The sensor needs to be programmed in a way that it stops the conveyor sending the cargos, when the maximum capacity of the container is reached or exceeded.Please write a code to enable the sensor to automate this task of finding the number of...
Solve by using Python language Validation of Invoice Number The Gocargo carriers are extending their automation to their accounts wing too, It is difficult to identify the source and destination of a cargo in an invoice. So given an invoice number, determine the "from" and "to" for a cargo. The format of invoice number is as follows: * from-Country and to-Country are separated by few digits(atleast 1) * after to-Country there are few digits. Input Format : Input consists...
The Gocargo are automating their testing works of the logistics wing too. They have planned to test if the container loading works correctly or not.Given the process involved in loading, in the form of expression, evaluate if the container loader has worked correct or not.Conventions'{' for cargos, '[' for containers and '(' for boxes.Rules:* cargo cannot be inside another cargo or container or box.* container cannot be inside another container or box.* box can be inside another box.Please check whether...
Palindromic CargoThe Gocargo carriers are celebrating their digitization process, which has given them a lot of benefits and ease of work for their employees. In account of this initiative they are offering their customers to ship their cargoes free of cost, if and only if the cargo names are palindromic.Given a cargo name, check whether the cargo name is a palindrome or not. Consider only alphabets while checking, remove special characters and spaces.Note : Define a function named check Palindrome()...
Expiry DateAt Transglobal Logistics, a commodity will be accepted for shipment only if it reaches the destination before the expiry date. Find whether a commodity is accepted for shipping, based on the expiry date, departure date of the commodity from the Source port and number of days required to reach the destination port.Input Format:First line is a string that corresponds to the expiry date.Second line is a string that corresponds to the departure date of the commodity from the source...
This question is for frequent pattern mining algorithm Apriori and closed pattern mining algorithm like CLOSET. Implement Apriori algorithm to mine frequent pattern from a transaction dataset Implement an algorithm to mine closed frequent pattern from the same dataset. You can either write a code to extract closed patterns from the result that you got in Part 1 or code CLOSET. Input Format The input dataset is a transaction dataset. The first line of the input corresponds to the minimum...
In Jgrasp(Java) Thanks!
This solution must use methods. It is recommended to use methods for this solution. Write a program that reads an integer and displays, using asterisks, a filled and hollow square, placed next to each other. For example, if the side length is 5. the program should display: ***** ***** You can assume that the user will enter a side length that is at least 2. If user enters a number smaller than 2, and your program has...
Python 3: Please follow the respective rubric
for the following function definition.
Rubric:
Rectangle Shape You should implement the following functions to print a rectangle shape. • print_rectangle(length, width, fillChar, hollow). This function will use draw_shape_line() function to print a rectangle shape with the given length and width, If the hollow is true, the shape will be hollow rectangle, otherwise a filled rectangle. This function must not interact with the user. For example, the call print_rectangle(5, 10, '*', False) should...
Skills Needed: cin, cout, constants, arithmetic expressions, rounding, int main, meaningful variable names, spacing, indentation, documentation, output. Computing Basic Geometric Formulas Write a program to compute answers to some basic geometry formulas. The program prompts the user to input a length (in centimeters) specified as a floating point value. The program then echoes the input and computes areas of squares and circles and the volume of a cube. For the squares, you will assume that the input length value is...
This assignment requires you to write a program to implement an odd-order Magic Square. Prompt the user to enter the “order” of the square and then produce for the user a magic square of that order. Run your code for at least four different inputs – all odd. ODD ORDER MAGIC SQUARES 1. Start by placing 1 in the middle column of the top row. 2. Continue by always placing the next number (say k+1) in the square diagonally up...