Find Jobs
Hire Freelancers

a program to find prime numbers

$10-30 USD

Abgeschlossen
Veröffentlicht vor mehr als 8 Jahren

$10-30 USD

Bezahlt bei Lieferung
to write a program to find prime numbers between 1-100 plz read the file to understand the project
Projekt-ID: 8520698

Über das Projekt

41 Vorschläge
Remote Projekt
Aktiv vor 9 Jahren

Möchten Sie etwas Geld verdienen?

Vorteile einer Ausschreibung auf Freelancer

Legen Sie Ihr Budget und Ihren Zeitrahmen fest
Für Ihre Arbeit bezahlt werden
Skizzieren Sie Ihren Vorschlag
Sie können sich kostenlos anmelden und auf Aufträge bieten
Vergeben an:
Avatar des Nutzers
I would like to bid this job because I am really suitable for job description: First: I am an software engineer who is very familiar with C/C++. In fact, I have done so many projects of C/C++(Karatsuba multiplier, Nintendo design, encryption algorithm like Sax Hash, Bernstein Hash, HummingBird...Especialy, I participated in a Walker Recognition project(data from Camera to Human Detection(image processing-HOG feature and Adaboost) and display in VGA). Besides,,I implemented the image conpression (wavelet transform). Also, I am very good in English (IELTS 6.0) and I have several year of researching so I can fully understand your requirement and understand fully about the papers and write the academic report.. Please contact me and let me know if you want any special requirement and do with lower price. Thank you.
$10 USD in 0 Tag
4,9 (17 Bewertungen)
6,0
6,0
Avatar des Nutzers
I am an Asst. Prof. and I am teaching this from last 7+ years. In my career i made this program more than 100 times in different languages like C, C++, Java, VB.Net, C#.Net and PL/SQL. Please send me a text for intimation, if u award me this work.
$10 USD in 0 Tag
0,0 (0 Bewertungen)
0,0
0,0
41 Freelancer bieten im Durchschnitt $17 USD für diesen Auftrag
Avatar des Nutzers
Hi, I have read the requirements and I would like to do this project if given the opportunity. I am a computer science practitioner and having the "C++ and Algorithms Certification Badge" in my profile gives me confidence and assurance that I can deliver you the project as required. Let me know if you are interested so I can have further details besides what was posted. Thanks.
$20 USD in 0 Tag
5,0 (550 Bewertungen)
7,2
7,2
Avatar des Nutzers
Hello, I got your problem statement. I have worked with many programs like this using C/C++. I surely satisify you with my work.
$10 USD in 1 Tag
5,0 (30 Bewertungen)
5,5
5,5
Avatar des Nutzers
A proposal has not yet been provided
$25 USD in 1 Tag
5,0 (32 Bewertungen)
5,2
5,2
Avatar des Nutzers
Hi, I am able to help you and write that program. Will provide fully commented source code and assist you after completion. Kind Regards, Narek.
$15 USD in 0 Tag
5,0 (23 Bewertungen)
5,1
5,1
Avatar des Nutzers
A proposal has not yet been provided
$25 USD in 1 Tag
4,9 (10 Bewertungen)
4,4
4,4
Avatar des Nutzers
Hello I am .Net Software Developer working on Web & Desktop applications C# expert developer Database : SQL SERVER / Oracle / MS-Access / Text My good points: - Full support. - Master Degree in Computer Science - 3+ Years of experience - Delivered before time - My good habit is to leaving comment on important lines. * Visit more about me from my portfolio / Reviews --------------------------------------- If you have any query then feel free to ask Lets discus your project
$19 USD in 1 Tag
5,0 (13 Bewertungen)
3,6
3,6
Avatar des Nutzers
A proposal has not yet been provided
$15 USD in 1 Tag
5,0 (5 Bewertungen)
3,3
3,3
Avatar des Nutzers
Hello Sir, I am experienced developer. I will do your task in half hour. Contact me so we can move forward. I am looking forwards your quick response. Regards Qasim Saleem
$10 USD in 0 Tag
5,0 (8 Bewertungen)
3,2
3,2
Avatar des Nutzers
i had done ms in egnineering. also i had several years of experience in the field of programming using c++. i can do this task for you.
$20 USD in 1 Tag
5,0 (9 Bewertungen)
3,3
3,3
Avatar des Nutzers
A proposal has not yet been provided
$12 USD in 0 Tag
5,0 (2 Bewertungen)
2,6
2,6
Avatar des Nutzers
Hi,sir. I was interested when I saw your project. I can complete your project nicely. My skills are C, C++, Reversing, Matlab & Mathematics, Web scraping,Algorithm. I can help you very kindly. I can help you good. Best regards. Thank you.
$25 USD in 1 Tag
4,7 (3 Bewertungen)
2,5
2,5
Avatar des Nutzers
Hi, I could do it with C. WHat do they mean with "find THE prime number?" I am not sure what they mean with THE. Greetings, Marcel
$30 USD in 1 Tag
5,0 (1 Bewertung)
1,5
1,5
Avatar des Nutzers
A proposal has not yet been provided
$25 USD in 1 Tag
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
We are an IT company with lots of experience. We provide professional graphical design, software design, development services and applications (web / desktop / mobile). We have several years of experience designing, developing and administering web, desktop and mobile applications on all major platforms in a variety of languages. We are specialized in database, azure, sysadmin and other services. We think we are the best fit to do this job. We are looking forward to collaborating with you.
$15 USD in 1 Tag
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
I am a Computer Science student myself and have excellent experience coding similar college assignments so I would be a perfect candidate for this job.
$10 USD in 2 Tagen
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
hello ! , thank you for your post. I'm expert in C/C++/C#, OpenGL, Graphics,VB, .net, ASP.net, java, Qt, algorithm. your task is not so difficult for me. and also I have sufficient experience in coding and i'm ready to start your task soon . so I will successfully complete your task in 2 hrs.. i'd hope to contact you ASAP and let's discuss your task. best regards.
$20 USD in 0 Tag
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
#include <stdio.h> int IsPrimeNumber(int num) { int bPrime = 1; int factor = num / 2; int i = 0; for(i = 2; i <= factor; i++) { if( (num % i) == 0) bPrime = 0; } return bPrime; } void GeneratePrimeNumbers(int max) { int i = 0; int dispctr = 0; printf("The prime numbers under %d are given below:\n". max); for(i = 2; i <= max; i++) { if(IsPrimeNumber(i) == 1) { printf("%d\t", i); dispctr = dispctr + 1; if(dispctr >= 6) { printf("\n"); dispctr = 0; } } } printf("\n"); } int main() { GeneratePrimeNumbers(100); return 0; }
$25 USD in 2 Tagen
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
From the attached document I understand that a code/program in C++ is required for finding the prime numbers using IF-ELSE statement. Please rectify if there is any gap in our understanding. We are professional coders and can deliver the same with countable minutes of effort. We will submit the program in the word file along with the simulation result for reference. Any queries are welcomed.
$15 USD in 1 Tag
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
I am a final year student of BSCS and I make many project of in c++ during this study program c++ as primary language . I am read your assignment doc and I will complete this on one day time and make is as requirement in doc. If your interested in feel free to contact me for further discuss and details.
$25 USD in 1 Tag
0,0 (0 Bewertungen)
0,0
0,0
Avatar des Nutzers
I have quite large experience with coding in c++ and c and this seems to be a very basic problem.I am sure I would be able to do it easily and with in time.
$10 USD in 1 Tag
0,0 (0 Bewertungen)
0,0
0,0

Über den Kunden

Flagge von MALAYSIA
Malaysia
5,0
2
Mitglied seit Sept. 16, 2015

Kundenüberprüfung

Andere Aufträge von diesem Kunden

Make Shapes using the Nested Loops
$10-30 USD
Danke! Wir haben Ihnen per E-Mail einen Link geschickt, über den Sie Ihr kostenloses Guthaben anfordern können.
Beim Senden Ihrer E-Mail ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.
Registrierte Benutzer Veröffentlichte Jobs
Freelancer ® is a registered Trademark of Freelancer Technology Pty Limited (ACN 142 189 759)
Copyright © 2024 Freelancer Technology Pty Limited (ACN 142 189 759)
Vorschau wird geladen
Erlaubnis zur Geolokalisierung erteilt.
Ihre Anmeldesitzung ist abgelaufen und Sie wurden abgemeldet. Bitte melden Sie sich erneut an.