Find Jobs
Hire Freelancers

C++ small fix

$10-30 USD

Fechado
Publicado há mais de 10 anos

$10-30 USD

Pago na entrega
I have a small c++ program that I made but its not working the way it should. It only needs a very small edit which I don't know what to do, if anyone is willing to do it free of charge because its so small? I attached the code and what the output is supposed to be when its done.
ID do Projeto: 5370476

Sobre o projeto

27 propostas
Projeto remoto
Ativo há 10 anos

Quer ganhar algum dinheiro?

Benefícios de ofertar no Freelancer

Defina seu orçamento e seu prazo
Seja pago pelo seu trabalho
Descreva sua proposta
É grátis para se inscrever e fazer ofertas em trabalhos
27 freelancers estão ofertando em média $15 USD for esse trabalho
Avatar do Usuário
Can help you with coding your project. We can finish in 15 min. I will also comment the code, so you will know what does what.
$10 USD em 1 dia
4,9 (303 avaliações)
7,2
7,2
Avatar do Usuário
Hi, I am interested in this project, Please communicate to discuss further regarding the project. Thank you
$14 USD em 1 dia
4,7 (196 avaliações)
6,6
6,6
Avatar do Usuário
Hello. It is very simple. I can fix it quickly. Price is $10 via paypal, you need not to award on freelancer. Thanks
$10 USD em 1 dia
4,9 (29 avaliações)
5,3
5,3
Avatar do Usuário
A proposal has not yet been provided
$15 USD em 0 dia
4,6 (23 avaliações)
4,6
4,6
Avatar do Usuário
I can do it. I have 5 years experience in C/C++ programming. Please contact me and let me help you finish the code. Thank you very much!
$10 USD em 1 dia
4,8 (11 avaliações)
4,0
4,0
Avatar do Usuário
hello , this is incomplete , u need to initialize the num1 , num 2 and num 3 . ..........................................................
$15 USD em 0 dia
4,9 (8 avaliações)
3,3
3,3
Avatar do Usuário
#include <iostream> using namespace std; int main () { int weeklysales; int expectedwages; int plan1; int num1; int num2; int num3; int plan2; cout << "Enter weekly sales amount"; cin >> weeklysales; plan1 = num1*num2+num3; plan2 = 15; cout << "Plan 1 pays" << num1*num2+num3 <<"\n"; cout << "plan 2 pays" << +15 <<"\n"; if (plan1 > plan2) cout << plan1 << "is greater than plan2" <<endl; else cout << plan1 << "is not greater than plan2" <<endl; return (0);} this will work! try it. . .
$10 USD em 0 dia
4,9 (5 avaliações)
2,8
2,8
Avatar do Usuário
hey its a very small fix.. i'll do it for free. given that you give me very good review.. here's the fixed code #include <iostream.h> #include<conio.h> void main () { int weeklysales; int expectedwages; int plan1; int num1; int num2; int num3; int plan2; cout << "Enter weekly sales amount"; cin >> weeklysales; cout << "Enter num1"; cin >> num1; cout << "Enter num2"; cin >> num2; cout << "Enter num3"; cin >> num3; plan1 = num1*num2+num3; plan2 = 15; cout << "Plan 1 pays" << plan1 <<"\n"; cout << "plan 2 pays" << plan2 <<"\n"; if (plan1 > plan2) cout << plan1 << "is greater than plan2" <<endl; else cout << plan1 << "is not greater than plan2" <<endl; } regards
$10 USD em 1 dia
5,0 (4 avaliações)
2,4
2,4
Avatar do Usuário
let expert do this https://www.freelancer.com/u/pivn.html https://www.freelancer.com/u/pivn.html https://www.freelancer.com/u/pivn.html
$20 USD em 1 dia
5,0 (4 avaliações)
2,0
2,0
Avatar do Usuário
Please tell me what you do in this code. i will do free of charge..Enjoy..................................................
$15 USD em 1 dia
4,4 (1 avaliação)
0,8
0,8
Avatar do Usuário
i will do it for free its not a big error just tell me the details of your output and your work will be done :)
$10 USD em 1 dia
5,0 (1 avaliação)
0,5
0,5
Avatar do Usuário
Hi, Simple code will get fixed under 5 minutes (lol). Nothing else to write just filling up space because there's a 100 character requirement. Thanks.
$25 USD em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
I will do it for free budy gimme details that what do this program need to do. Its seems like you are working on your assignment
$10 USD em 0 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
I'm keenly interested in doing programming tasks in C++. Its just a start for me in freelancer.com and I want to prove my skills here.
$25 USD em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
Hi , please message me , if you want to be done correctly , I can help you .I will be glad to help you !
$15 USD em 0 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
I can fix your existing code without adding any extra includes or the like. The problem is the the line int main () {; You never put a semicolon after a bracket like that, so it should read int main () { To fix the rest of the code, I would need to know what you're trying to do.
$30 USD em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
I will complete this for you for free all I ask is a 5 rating 100% completion rate and good review. I would have finished this in a few minutes but your post said that you attached the code and what the results should look like. There are many unused variables in your code yet only one input taken. If you will post the results then I can finish this properly very quickly and it will only cost you a good review. Thank you for your consideration. Travis
$10 USD em 0 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
// If this is the solution for you? If not, ask more. #include <iostream> using namespace std; int main () { //int weeklysales; //int expectedwages; int plan1; int num1; int num2; int num3; int plan2; num1 = 5; num2 = 7; num3 = 10; //cout << "Enter weekly sales amount: "; //cin >> weeklysales; plan1 = num1 * num2 + num3; plan2 = 15; cout << "Plan 1 pays " << plan1 <<".\n"; cout << "Plan 2 pays " << plan2 <<".\n"; if (plan1 > plan2) cout << plan1 << " is greater than plan2 (" << plan2 << ")." << endl; else cout << plan1 << " is not greater than plan2 (" << plan2 << ")" << endl; return (0); }
$10 USD em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
I want to help you even if you need for free. I have been doing some projects using C and C++ language and believe that I could help you.
$13 USD em 1 dia
0,0 (0 avaliações)
0,0
0,0
Avatar do Usuário
A proposal has not yet been provided
$10 USD em 0 dia
0,0 (0 avaliações)
0,0
0,0

Sobre o cliente

Bandeira do(a) UNITED STATES
Athens, United States
5,0
3
Método de pagamento verificado
Membro desde set. 19, 2013

Verificação do Cliente

Obrigado! Te enviamos um link por e-mail para que você possa reivindicar seu crédito gratuito.
Algo deu errado ao enviar seu e-mail. Por favor, tente novamente.
Usuários Registrados Total de Trabalhos Publicados
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Carregando pré-visualização
Permissão concedida para Geolocalização.
Sua sessão expirou e você foi desconectado. Por favor, faça login novamente.