473,729 Members | 2,344 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need help with menu program

namcintosh
67 New Member
Hello, everyone.

Well, let me cut to the chase and explain my problem.

I am trying to devise a menu plan that uses the if/else if and the while loop. The program calculates the user's weight on a given planet. It first asks for the user's weight, asks them for a choice. If they choose choices 1 though 9, the user's weight will be calculated on whatever choice they picked (for example, if the user inputs 150 as their weight and choose choice #2 for Venus, then the user's weight on Venus would be 135 pounds. However, I am running into some problems.

When I compile the program, the output does not come out as I expect.
The program and the results are listed below:

Program:
// This menu-driven program uses an if/else statement to calculate
// the user's weight on a given planet. It also inserts a loop.

#include <iostream>
#include <iomanip> //Needed for the setprecison command
#include <conio> //Needed to show black output screen
using namespace std;

int main()
{
int choice;
double weight1, weight2;


// Displays the menu choices on the screen.
cout << "\t\tPlanet Menu\n\n";
cout << "1. Mercury\n";
cout << "2. Venus\n";
cout << "3. Earth\n";
cout << "4. Mars\n";
cout << "5. Jupiter\n";
cout << "6. Saturn\n";
cout << "7. Uranus\n";
cout << "8. Neptune\n";
cout << "9. Pluto\n";
cout << "99. Exit\n\n";

cout << "Enter your weight: ";
cin >> weight1;

while (choice !=99)

if (choice == 1)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mercury." <<endl;
}
else if (choice == 2)
{
cout << "Please make a selection. ";
cin >> choice;
weight2 = weight1 * 0.90;
cout << "You will weight" << weight2 << "on Venus." <<endl;
}
else if (choice == 3)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.00;
cout << "You will weight" << weight2 << "on Earth." <<endl;
}
else if (choice == 4)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mars." <<endl;
}
else if (choice == 5)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 2.50;
cout << "You will weight" << weight2 << "on Jupiter . " <<endl;
}
else if (choice == 6)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.10;
cout << "You will weight" << weight2 << "on Saturn." <<endl;
}
else if (choice == 7)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.80;
cout << "You will weight" << weight2 << "on Uranus." <<endl;
}
else if (choice == 8)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.2;
cout << "You will weight" << weight2 << "on Neptune. " <<endl;

}
else if (choice == 9)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.01;
cout << "You will weight" << weight2 << "on Pluto. " <<endl;
}
//Outputs the following message when user enters number other
//than 1 through 9 or 99 on the screen.
else if (choice !=99)
{
cout << "The valid choices are 1 through 9 or 99 to exit.\n";
cout << "Run the program again and select one of those.\n";
}

getch();
return 0;
}

Output Line:
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 150
Please make a selection 2
You will weight60on Mercury.
Please make a selection. 2
You will weight135on Venus.
Please make a selection. 99
You will weight135on Venus.


Do you see the problem? No matter what choice I key in for the first choice, it always calculates for Mercury. Then, when I put that choice in again, it calculates the correct choice. Also, the choice 99 should exit, not do a calculation. (Note: The errors are in bold.) And, when I key in a value that is not one of the choices, instead of just showing "The valid choices are 1 through 9 or 99 to exit. Run the program again and select one of those," all I get is an infinite loop with this statement.
Could there be something wrong with my loops???
Apr 6 '07 #1
14 3217
ilikepython
844 Recognized Expert Contributor
Hello, everyone.

Well, let me cut to the chase and explain my problem.

I am trying to devise a menu plan that uses the if/else if and the while loop. The program calculates the user's weight on a given planet. It first asks for the user's weight, asks them for a choice. If they choose choices 1 though 9, the user's weight will be calculated on whatever choice they picked (for example, if the user inputs 150 as their weight and choose choice #2 for Venus, then the user's weight on Venus would be 135 pounds. However, I am running into some problems.

When I compile the program, the output does not come out as I expect.
The program and the results are listed below:

Program:
// This menu-driven program uses an if/else statement to calculate
// the user's weight on a given planet. It also inserts a loop.

#include <iostream>
#include <iomanip> //Needed for the setprecison command
#include <conio> //Needed to show black output screen
using namespace std;

int main()
{
int choice;
double weight1, weight2;


// Displays the menu choices on the screen.
cout << "\t\tPlanet Menu\n\n";
cout << "1. Mercury\n";
cout << "2. Venus\n";
cout << "3. Earth\n";
cout << "4. Mars\n";
cout << "5. Jupiter\n";
cout << "6. Saturn\n";
cout << "7. Uranus\n";
cout << "8. Neptune\n";
cout << "9. Pluto\n";
cout << "99. Exit\n\n";

cout << "Enter your weight: ";
cin >> weight1;

while (choice !=99)

if (choice == 1)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mercury." <<endl;
}
else if (choice == 2)
{
cout << "Please make a selection. ";
cin >> choice;
weight2 = weight1 * 0.90;
cout << "You will weight" << weight2 << "on Venus." <<endl;
}
else if (choice == 3)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.00;
cout << "You will weight" << weight2 << "on Earth." <<endl;
}
else if (choice == 4)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mars." <<endl;
}
else if (choice == 5)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 2.50;
cout << "You will weight" << weight2 << "on Jupiter . " <<endl;
}
else if (choice == 6)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.10;
cout << "You will weight" << weight2 << "on Saturn." <<endl;
}
else if (choice == 7)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.80;
cout << "You will weight" << weight2 << "on Uranus." <<endl;
}
else if (choice == 8)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.2;
cout << "You will weight" << weight2 << "on Neptune. " <<endl;

}
else if (choice == 9)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.01;
cout << "You will weight" << weight2 << "on Pluto. " <<endl;
}
//Outputs the following message when user enters number other
//than 1 through 9 or 99 on the screen.
else if (choice !=99)
{
cout << "The valid choices are 1 through 9 or 99 to exit.\n";
cout << "Run the program again and select one of those.\n";
}

getch();
return 0;
}

Output Line:
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 150
Please make a selection 2
You will weight60on Mercury.
Please make a selection. 2
You will weight135on Venus.
Please make a selection. 99
You will weight135on Venus.


Do you see the problem? No matter what choice I key in for the first choice, it always calculates for Mercury. Then, when I put that choice in again, it calculates the correct choice. Also, the choice 99 should exit, not do a calculation. (Note: The errors are in bold.) And, when I key in a value that is not one of the choices, instead of just showing "The valid choices are 1 through 9 or 99 to exit. Run the program again and select one of those," all I get is an infinite loop with this statement.
Could there be something wrong with my loops???
Hello, I don't really see your braces for your while loop. Is that a typo?
Second, the first time you run the loop the program doesn't know what choice is since you ask the user for the values in the if statements. You should ask for choice at the beggining of the loop and then check what is it is with the ifs. Hope that helps.
Apr 7 '07 #2
namcintosh
67 New Member
Hello, I don't really see your braces for your while loop. Is that a typo?
Second, the first time you run the loop the program doesn't know what choice is since you ask the user for the values in the if statements. You should ask for choice at the beggining of the loop and then check what is it is with the ifs. Hope that helps.
No, that's not a typo. Where should I put the braces for my while loop? Also, are youu saying that I should ask for the choice after I typed in "Please enter your weight."
Apr 7 '07 #3
ilikepython
844 Recognized Expert Contributor
No, that's not a typo. Where should I put the braces for my while loop? Also, are youu saying that I should ask for the choice after I typed in "Please enter your weight."
Hi, Your braces for the while loop should be one right after the while statement and one after the last if block. That way it will execute until the user enters 99.
Also the "cin >> choice;" line should be at the beginning of the while loop like this:
Expand|Select|Wrap|Line Numbers
  1. while (choice != 99)
  2.     {
  3.         cin >> choice;
  4.  
  5. /* calculate weight
  6.     ................. */
  7.     }                       //close while loop
  8.  
Does that help?
Apr 7 '07 #4
ilikepython
844 Recognized Expert Contributor
Oh and also, I'm not exactly sure but there's probably a better way to get the calculated weight depending on the choice instead of all those if statements.
Apr 7 '07 #5
namcintosh
67 New Member
Oh and also, I'm not exactly sure but there's probably a better way to get the calculated weight depending on the choice instead of all those if statements.
Well, my homework required that I use the if/else-if loop for this program; it's a new section that I am on.

Also, I tried that, and this is what happened:

cout << "Enter your weight: ";
cin >> weight1;

while (choice !=99)
{
cin >> choice;
}

if (choice == 1)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mercury." <<endl;
}
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 185
9

What am I doing wrong.
Apr 7 '07 #6
ilikepython
844 Recognized Expert Contributor
Well, my homework required that I use the if/else-if loop for this program; it's a new section that I am on.

Also, I tried that, and this is what happened:

cout << "Enter your weight: ";
cin >> weight1;

while (choice !=99)
{
cin >> choice;
}

if (choice == 1)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mercury." <<endl;
}
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 185
9

What am I doing wrong.
You put the closing while brace after the "cin" line. That i means it will repaetedly ask for choice until you enter 99. You don't want that. Try putting it at the end of all the calculations so the it can loop correctly like this:
Expand|Select|Wrap|Line Numbers
  1. while (choice is not 99)
  2.     {                                         // begin brace
  3.         ask for choice
  4.         calculate weight here
  5.     }                                           // end brace after everything is done
  6.  
so once it reaches the end brace it "loops" back up to the begin brace.

Does that clarify things?
Apr 7 '07 #7
namcintosh
67 New Member
You put the closing while brace after the "cin" line. That i means it will repaetedly ask for choice until you enter 99. You don't want that. Try putting it at the end of all the calculations so the it can loop correctly like this:
Expand|Select|Wrap|Line Numbers
  1. while (choice is not 99)
  2.     {                                         // begin brace
  3.         ask for choice
  4.         calculate weight here
  5.     }                                           // end brace after everything is done
  6.  
so once it reaches the end brace it "loops" back up to the begin brace.

Does that clarify things?
Pardon me, if I seem like a dummy; but I am really new at this.
Can you please insert in the program where exactly does that statement go???
Here is the program again:
cout << "Enter your weight: ";
cin >> weight1;

while (choice !=99)
{
cin >> choice;
}

if (choice == 1)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mercury." <<endl;
}
else if (choice == 2)
{
cout << "Please make a selection. ";
cin >> choice;
weight2 = weight1 * 0.90;
cout << "You will weight" << weight2 << "on Venus." <<endl;
}
else if (choice == 3)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.00;
cout << "You will weight" << weight2 << "on Earth." <<endl;
}
else if (choice == 4)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.40;
cout << "You will weight" << weight2 << "on Mars." <<endl;
}
else if (choice == 5)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 2.50;
cout << "You will weight" << weight2 << "on Jupiter . " <<endl;
}
else if (choice == 6)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.10;
cout << "You will weight" << weight2 << "on Saturn." <<endl;
}
else if (choice == 7)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.80;
cout << "You will weight" << weight2 << "on Uranus." <<endl;
}
else if (choice == 8)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 1.2;
cout << "You will weight" << weight2 << "on Neptune. " <<endl;

}
else if (choice == 9)
{
cout << "Please make a selection ";
cin >> choice;
weight2 = weight1 * 0.01;
cout << "You will weight" << weight2 << "on Pluto. " <<endl;
}
//Outputs the following message when user enters number other
//than 1 through 9 or 99 on the screen.
else if (choice !=99)
{
cout << "The valid choices are 1 through 9 or 99 to exit.\n";
cout << "Run the program again and select one of those.\n";
}

getch();
return 0;
}
Apr 7 '07 #8
ilikepython
844 Recognized Expert Contributor
Pardon me, if I seem like a dummy; but I am really new at this.
Can you please insert in the program where exactly does that statement go???
Here is the program again:
Expand|Select|Wrap|Line Numbers
  1.  cout << "Enter your weight: ";
  2.     cin  >> weight1;
  3.  
  4.                 while (choice !=99)
  5.                 {
  6.                    cin >> choice;
  7.  
  8.                 if (choice == 1)
  9.         {
  10.         cout << "Please make a selection ";
  11.         cin  >> choice;
  12.         weight2 = weight1 * 0.40;
  13.         cout << "You will weight" << weight2 << "on Mercury." <<endl;
  14.                   }
  15.                 else if (choice == 2)
  16.         {
  17.         cout << "Please make a selection. ";
  18.         cin  >> choice;
  19.         weight2 = weight1 * 0.90;
  20.         cout << "You will weight" << weight2 << "on Venus." <<endl;
  21.                   }
  22.                 else if (choice == 3)
  23.         {
  24.         cout << "Please make a selection ";
  25.         cin  >> choice;
  26.         weight2 = weight1 * 1.00;
  27.                 cout << "You will weight" << weight2 << "on Earth." <<endl;
  28.         }
  29.                 else if (choice == 4)
  30.         {
  31.         cout << "Please make a selection ";
  32.         cin  >> choice;
  33.         weight2 = weight1 * 0.40;
  34.         cout << "You will weight" << weight2 << "on Mars." <<endl;
  35.         }
  36.                 else if (choice == 5)
  37.         {
  38.         cout <<  "Please make a selection ";
  39.         cin  >> choice;
  40.         weight2 = weight1 * 2.50;
  41.                 cout << "You will weight" << weight2  << "on Jupiter . " <<endl;
  42.                 }
  43.                 else if (choice == 6)
  44.         {
  45.         cout << "Please make a selection ";
  46.         cin  >> choice;
  47.         weight2 = weight1 * 1.10;
  48.                 cout << "You will weight" << weight2 << "on Saturn." <<endl;
  49.                 }
  50.                 else if (choice == 7)
  51.         {
  52.         cout << "Please make a selection ";
  53.         cin  >> choice;
  54.         weight2 = weight1 * 0.80;
  55.                 cout << "You will weight" << weight2 << "on Uranus." <<endl;
  56.                   }
  57.                 else if (choice == 8)
  58.         {
  59.         cout << "Please make a selection ";
  60.         cin  >> choice;
  61.         weight2 = weight1 * 1.2;
  62.                 cout << "You will weight" << weight2 << "on Neptune. " <<endl;
  63.  
  64.                   }
  65.                 else if (choice == 9)
  66.         {
  67.         cout << "Please make a selection ";
  68.         cin  >> choice;
  69.         weight2 = weight1 * 0.01;
  70.                 cout << "You will weight" << weight2 << "on Pluto. "  <<endl;
  71.                 }
  72.                 //Outputs the following message when user enters number other
  73.                 //than 1 through 9 or 99 on the screen.
  74.             else if (choice !=99)
  75.                 {
  76.                 cout << "The valid choices are 1 through 9 or 99 to exit.\n";
  77.                 cout << "Run the program again and select one of those.\n";
  78.                 }
  79.                 }
  80.         getch();
  81.     return 0;
  82. }
  83.  
That's Ok.
I edited it. Notice the position of the while braces: they're in bold.
If you need more help just ask.
Apr 7 '07 #9
namcintosh
67 New Member
That's Ok.
I edited it. Notice the position of the while braces: they're in bold.
If you need more help just ask.

Well, I got half of the problem right, thanks to you. :-)

However, I am still running into a problem.
Here is my output:
Output 1
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 185
5
Please make a selection 5
You will weight462.5on Jupiter .
6
Please make a selection 6
You will weight203.5on Saturn.

As you see, it first asks me for my weight. Because I have the cin >> choice line, it waits for me to enter a choice. then, once I enter a choice, it then asks me to make a selection. But, when I deleted the cin >> choice, this is the problem that I ran into:

Output 2:
Planet Menu

1. Mercury
2. Venus
3. Earth
4. Mars
5. Jupiter
6. Saturn
7. Uranus
8. Neptune
9. Pluto
99. Exit

Enter your weight: 185
Please make a selection 1
You will weight74on Mercury.
Please make a selection 2
You will weight74on Mercury.
Please make a selection. 2
You will weight166.5on Venus.
Please make a selection. 99
You will weight166.5on Venus.

Also, when I enter an invalid amout, it shows the infinite loop again. What do I do. The first input is right (it makes the right calculations and executes correctly), but how can I make it stop asking the user for the choice twice and make it ask for it once instead. Do you have C++ on your computer? Maybe you can copy and paste the program and you will see what I mean.

Thanks!!!
Apr 7 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

0
1616
by: Chetna Joshi | last post by:
We have created a Web Application in ASP.NET using VB.NET. We have also created a Web Setup Project for installing the Web application on the target machine. I need help on creating a shortcut to the first page of the application in the target machine's program menu. I have tried using "User's Program Menu". But there is no option to open a web page (start page of the application) using the "User's Program Menu". Does anyone know a solution...
0
920
by: jkendrick75 | last post by:
I am new to vb.net and am using visual studio.net 2003. My problem is coming from a program that i am trying to write. I initially added a new form to the program and changed the project property to make the new form the starting form. when i press F5 to start the program, it still goes to my old form and does not show my new form. Since then, as i wasn't too far into the program, i decided to rewrite the program, creating the form that...
66
5385
by: genestarwing | last post by:
QUESTION: Write a program that opens and read a text file and records how many times each word occurs in the file. Use a binary search tree modified to store both a word and the number of times it occurs. After the program has read the file, it should offer a menu with three choices. the first is to list all the words along with the number of occurences. The second is to let you enter a word, with the program reporting how many times the...
4
2759
by: georges the man | last post by:
hey guys, i ve been posting for the last week trying to understand some stuff about c and reading but unfortunaly i couldnt do this. i have to write the following code. this will be the last time i ask for an entire code or u can give me the outine of what to do and i ll do it by myself. the description is the following: the program will read a text file that contains historical price of a stock. The program will allow users to query...
12
3014
by: adamurbas | last post by:
ya so im pretty much a newb to this whole python thing... its pretty cool but i just started today and im already having trouble. i started to use a tutorial that i found somewhere and i followed the instructions and couldnt get the correct results. heres the code stuff... temperature=input("what is the temperature of the spam?") if temperature>50: print "the salad is properly cooked." else:
2
1206
by: Sekm | last post by:
Hi there i want a basic menu which the user inputs a number to chose from the menu. Thing is that i need to make sure that the input IS an integer. So i have an InputMismatchException catch but when it occurs, the program just keeps outputting the menu over and over?? static Scanner sc = new Scanner(System.in); public static void menu (){ System.out.println("Please enter a number to select from the following:\n\t1. Create new...
1
2099
by: javabeginner123 | last post by:
i have a java prob, and i have to solve it fast, but i'm just getting to know it, so plz help me solve it with full code completed, thanks so much. the prob is to create a monter fight and there is the description: The monsters are of a very strange kind, called "Bigmon". They have some basic characteristics, like attack and defense power, life points, a name, and a bonus factor that is used in special occasions. In this initial phase of the...
0
9426
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9142
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8148
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6722
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6022
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3238
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2680
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2163
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.