Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags
Member Avatar for Jintu

Hi, I have a small doubt in C++ assignment. I have been assigned to do seat reservation in a certain foodcourt. I have already done the seat reservation thing using basic array and function. But my program can only do manual seat reservation. Which means the user gets to choose …

Member Avatar for mrnutty
0
196
Member Avatar for Jintu

I dun quite understand how this program works....... Please advice... What is the output of this program? [CODE] <html> <!-- test01.php --> <body> <?php $x = 2; for ($i = 1; $i <= 6; $i++) { if ($i % 2 == 1) { $x++; } print $i . 'x' . …

Member Avatar for diafol
0
152
Member Avatar for Jintu

Pls advise, what is wrong with the PHP script: [CODE] <html> <head> <title>Calorie Calculation</title> </head> <body> <?php $calorie = ($_POST["fat"] * 9) / ($_POST["calories"] * 100); ?> Welcome, $_POST["foodname"] contains: <?php echo $calorie ."from fat" ; echo "<br />"; { if ($calorie > 30) echo ($_POST["foodname"]) 'contains $calorie % from …

Member Avatar for almostbob
0
79
Member Avatar for Jintu

[code] <html> <head> <title>Grade Calculator</title> </head> <?php ?> <body> <?php $grade = $_POST["Quiz1"] * 0.05 + $_POST["Mid-Term"] * 0.30 + $_POST["Quiz2"] * 0.05 + $_POST["AL1"] * 0.05 + $_POST["AL2"] * 0.05 + $_POST["Participation"] * 0.10 + $_POST["Final"] * 0.40 ; ?> <?php echo "Grade Report: <br />"; echo "<br />"; …

Member Avatar for Jintu
0
3K
Member Avatar for Jintu

Hello all, I have to write a program that calculate a bmi of person whose weight is 170 pounds (it increases by 1 pound for each month for 12 months) and 70 inches, after I have all the bmi for each weight from 170 - 182 pounds, under each weight …

Member Avatar for dalefish
0
125
Member Avatar for Jintu

CAREFULLY READ ALL OF THIS PAGE BEFORE STARTING THE ASSIGNMENT Cans of luncheon meat (e.g. Spam) are quite often irregularly shaped with a special tool on top to open them: Can of Spam You can estimate the volume (in cubic centimeters) of a can of Spam by multiplying the height …

Member Avatar for diafol
0
138
Member Avatar for Jintu

[code=python] total = 0 max_score = -1 min_score = 100000000 total_numbers = 0 x = 0 y = 0 print("Enter a list of numbers, (Enter -1 to stop) ") print ("Press the enter key after entering each number") print ("End the list by entering -1") print () number = int(input("")) …

Member Avatar for vegaseat
0
137
Member Avatar for Jintu

Write a Python program to show the temperatures starting at zero degrees Celsius, up to 100 degrees Celsius, in steps of 2 degrees, with the corresponding Fahreneit temperature shown in the next column. Temperatures should be shown as floating point numbers to two decimal places. Use a for loop for …

Member Avatar for vegaseat
0
223
Member Avatar for Jintu

Write a program to read a list of non-negative integers, and to display the largest integer, the smallest integer, and the average of all the integers. The user indicates the end of the list by entering a negative sentinel value (use -1) that is NOT used in the calculations. The …

Member Avatar for Jintu
0
400