Find Jobs
Hire Freelancers

c++ questions

$10-50 USD

Ολοκληρώθηκε
Αναρτήθηκε περίπου 10 χρόνια πριν

$10-50 USD

Πληρωμή κατά την παράδοση
got 3 questions need the answers for asap 1) write a program to sort the values of a 10-elemntary array. Display sorted values, average value, smallest value, and largest value. Use the following declaration for the array: double array1[]= { 34,56,4,10,77,52,93,30,5,51}; 2)Given: char strg1[] = " Engineering Problem Solving"; char strg2[] = " Problem Solving with C++"; write a program to print the length of each string 3) write a program using the function getline to read user's full name and also the following input: Have a great Summer; Practise C++, See you in August! The output of the program should display: John DoeDoe Phillips Practise C++, See you in August
Ταυτότητα εργασίας: 5848610

Σχετικά με την εργασία

26 προτάσεις
Απομακρυσμένη Εργασία
Ενεργός/ή 10 χρόνια πριν

Ψάχνεις τρόπο για να κερδίσεις μερικά χρήματα;

Πλεονεκτήματα πλειοδοσίας στο Freelancer

Καθόρισε τον προϋπολογισμό σου και το χρονοδιάγραμμα
Πληρώσου για τη δουλειά σου
Περίγραψε την πρόταση σου
Η εγγραφή και η πλειοδοσία σε εργασίες είναι δωρεάν
Βραβεύτηκε στον/στην:
Avatar Χρήστη
Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project. Hi, lets do the project.
$30 USD σε 1 ημέρα
4,9 (30 αξιολογήσεις)
4,7
4,7
26 freelancers δίνουν μια μέση προσφορά $19 USD για αυτή τη δουλειά
Avatar Χρήστη
Hi, I am C++ expert and can surely help you here with this project. I have a lot of experience in helping students with their assignments and tutoring. Please communicate to discuss further. Thank you. Regards Anshu
$19 USD σε 1 ημέρα
4,8 (116 αξιολογήσεις)
6,0
6,0
Avatar Χρήστη
Hi, I have read the requirements and I would like to do this please. Let me know if you are interested so I can start. Thanks.
$10 USD σε 0 ημέρα
4,9 (112 αξιολογήσεις)
5,5
5,5
Avatar Χρήστη
consider to be done .I am expert in this filed so you can award me your project. Your time and money will be safe when you will award me thanks.
$20 USD σε 1 ημέρα
5,0 (15 αξιολογήσεις)
4,0
4,0
Avatar Χρήστη
hi, i can help . please reply to discuss more. thanks. .
$10 USD σε 1 ημέρα
4,9 (14 αξιολογήσεις)
3,5
3,5
Avatar Χρήστη
Hi there, These questions are pretty straightforward and I can complete all of them just in several minutes. Regards.
$10 USD σε 0 ημέρα
5,0 (6 αξιολογήσεις)
3,3
3,3
Avatar Χρήστη
Have written more than 1000 codes in c and c++.. can give you these programs within an hour. Thank you for going through my proposal.
$25 USD σε 0 ημέρα
5,0 (6 αξιολογήσεις)
3,2
3,2
Avatar Χρήστη
Seems VERY easy to me. Can do in 3 HOURS. Contact me ASAP. Regards, Junaid
$20 USD σε 1 ημέρα
4,9 (9 αξιολογήσεις)
3,0
3,0
Avatar Χρήστη
I will answer those questions right away please ping me so that i can aswer and write code for you thanks
$10 USD σε 0 ημέρα
5,0 (8 αξιολογήσεις)
2,9
2,9
Avatar Χρήστη
A proposal has not yet been provided
$25 USD σε 0 ημέρα
4,9 (5 αξιολογήσεις)
2,8
2,8
Avatar Χρήστη
Hello, Sir! How are you? I am software developer and c, c++, .net, VB... expert. I have rich develop experience and have developed many apps. If you choose me, i will do my best for you. I understand your project and will complete fast. I wait your positive reply and you may believe me. Thank you very much.
$10 USD σε 1 ημέρα
5,0 (6 αξιολογήσεις)
2,6
2,6
Avatar Χρήστη
hi message me ...... i can get it done immediately i have very good hands on c++ waiting for your reply thnx Regards
$29 USD σε 0 ημέρα
4,4 (7 αξιολογήσεις)
2,6
2,6
Avatar Χρήστη
hello will be done.. simple programs. kindly check my past work and employer reviews. regards............
$22 USD σε 1 ημέρα
5,0 (5 αξιολογήσεις)
2,2
2,2
Avatar Χρήστη
Hello, I have a lot of experience as a C++ developer and I can deliver the project to you within 1-2 hours. Kind regards, Drago
$23 USD σε 1 ημέρα
5,0 (2 αξιολογήσεις)
2,0
2,0
Avatar Χρήστη
I was the top of my class in computer science and math. I'm well versed in all types of math and computer languages.
$10 USD σε 1 ημέρα
5,0 (2 αξιολογήσεις)
1,8
1,8
Avatar Χρήστη
Hi, They are ready, the complete answer of question 1 is as follow: #include <iostream> using namespace std; int main() { double array1[] = {34, 56, 4, 10, 77, 52, 93, 30, 5, 51}; double average, smallest, largest; for(int i = 0; i < 10 - 1; i++) { for(int j = i + 1; j < 10; j++) if(array1[i] > array1[j]) { double temp = array1[i]; array1[i] = array1[j]; array1[j] = temp; } } average = smallest = largest = array1[0]; cout << "Sorted Array : {" << array1[0]; for(int i = 1; i < 10; i++) { cout << ", " << array1[i]; if(array1[i] < smallest) smallest = array1[i]; else if(array1[i] > largest) largest = array1[i]; average += array1[i]; } average /= 10; cout << "}" << endl; cout << "Average Value = " << average << endl; cout << "Smallest Value = " << smallest << endl; cout << "Largest Value = " << largest << endl; return 0; }
$10 USD σε 0 ημέρα
5,0 (1 αξιολόγηση)
1,5
1,5
Avatar Χρήστη
I have a lot of experience in C++. I have been coding in C++ for the past 8+ years. I can provide solutions to all your 3 questions in very less amount of time. You can check my ratings and reviews to get an idea of quality of my work. Please discuss further so that I can start working on your project. Looking forward to hear from you. Thanks :)
$34 USD σε 1 ημέρα
5,0 (1 αξιολόγηση)
1,0
1,0
Avatar Χρήστη
Please Send a message to talk about details and do a best offer.... I have special interest in your project because I did some kind of data structs in C++ not long ago and is easy for me stay in the same area. I would need all info about it , if is possible, so i make this job as closer like was request for your teacher. you can be sure of my confidetiality that warrant your credits, I warrant my work too, see my ratings 100% in time. Only I request you that take your destion fast, because time is running, and in this way, we will have enough time to ajust details and mistakes and present a perfect work.
$15 USD σε 3 ημέρες
5,0 (1 αξιολόγηση)
0,8
0,8
Avatar Χρήστη
A proposal has not yet been provided
$35 USD σε 1 ημέρα
0,0 (0 αξιολογήσεις)
0,0
0,0
Avatar Χρήστη
Hi, This looks like school assignment. I would love to be back at school :-) Please get in touch. Thanks, Pradeep Gaur
$15 USD σε 2 ημέρες
0,0 (0 αξιολογήσεις)
0,0
0,0
Avatar Χρήστη
I have good knowledge of C++ and I could do this easily if you give me a positive feedback . Thanks , Luca Adrian
$30 USD σε 1 ημέρα
0,0 (0 αξιολογήσεις)
0,0
0,0

Σχετικά με τον πελάτη

Σημαία της UNITED STATES
abu dhabi, United States
5,0
23
Επαληθευμένη μέθοδος πληρωμής
Μέλος από Απρ 16, 2014

Επαλήθευση Πελάτη

Ευχαριστούμε! Σου έχουμε στείλει ένα email με ένα σύνδεσμο για να διεκδικήσεις τη δωρεάν πίστωση σου.
Κάτι πήγε στραβά κατά την προσπάθεια αποστολής του email σου. Παρακαλούμε δοκίμασε ξανά.
Εγγεγραμμένοι Χρήστες Συνολικές Αναρτημένες Δουλειές
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Φόρτωση προεπισκόπησης
Δόθηκε πρόσβαση για Geolocation.
Η σύνδεση σου έχει λήξει και τώρα έχεις αποσυνδεθεί. Παρακαλούμε συνδέσου ξανά.