d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > What Would I Want To Work On As A C Project? > As A First C Project
Add Reply New Topic New Poll
Member
Posts: 856
Joined: Jan 22 2013
Gold: 0.00
Mar 1 2013 03:32pm
I have experience in java, and I've made a few very basic games, so I want to look into C/C++/C# what should I do as a .. First project ?
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Mar 2 2013 12:59am
Here are a few ideas.

This is taken from here, http://www.cplusplus.com/forum/beginner/3473/

Code
Beginner
1. Write a program which finds the factorial of a number entered by the user. (check for all conditions) (Beginner).
2. Develop a program to convert currency X to currency Y and visa versa (beginner).
3. Write a program that print out the following, user will input the top number:
*****
****
***
**
*
4. Write a program that print out the following, user will input the bottom number:  *
**
** *
****
******
5. Write a program that pring out the following triangle, the user will input the bottom number:
*
***
*****
*******
6. Develop a program that uses a randomly generated number to select 1 of 3(or more)
functions to show the user. (Beginner)
7. Guessing game. Write a c++ game that asks the user to guess a number between 1 and a 100. If you guessed correctly, it will say you win. If your too high or too low it will also let you know. (Beginner)
8. Create a program which generates Fibonacci series till a number 'n' where 'n' is entered by the user. For eg. if the user enters 10 then the output would be: 1 1 2 3 5 8 (Beginner)
9. Determine how many of the characters are vowels and how many are consonants in a given line of text. Also terminate the string when the input character encountered is other than the alphabets. (Beginner).
10. Find the Fifth root of the sum of the squares of the first 100 ODD numbers only. (Beginner)
11. Perform 4-letter WORD UNSCRAMBLING i.e. List all possible combinations of 4-letters in a word. Ex: The word 'TEST' can be unscrambled as TEST,TETS,TSET,TSTE,TTSE,TTES,etc. (Beginner)
12. Make a program that allows the user to input either the radius, diameter, or area of the circle. The program should then calculate the other 2 based on the input. (Beginner)
13. READ a line of text and WRITE it out BACKWARDS using RECURSIVE Function. (Beginner)
14. Write a program to SWAP the contents of 3 variables without using the temporary (or extra) variables. (Beginner)
15. Write a program which reverses the numerals in an integer, that is 326 becomes 623, etc.. (Beginner)
16. The program will tell the user each time whether he guessed high or low. The user WINS the game when the number guessed is same as randomly generated number. (Beginner)
17. Write a program to simulate a simple calculator. It should accept two number from the user along with the required operation to be performed. Addition, Subtraction, Division and Multiplication are the basic operations that should be implemented. Feel free to implement the other operations (Beginner)
18. Determine how much money is in a piggy bank that contains several 50 paise coins, 25 paise coins, 20 paise coins, 10 paise coins and 5 paise coins. Use the following values to test your program : Five 50 paise coins, Three 25 paise coins, Two 20 paise coins, One 10 paise coin and Fifteen 5 paise coins. (Beginner)
19. Create a simple Palindrome checker program. The program should allow the user to enter a string and check whether the given string is a palindrome or not. Only digits and alphabets should be considered while checking for palindromes -- any other characters are to be ignored. (beginner)
20. Write a program that allows you to input students' scores and weights. The program should then calculate a weighted average and score based on the data inputted by the user. (Beginner)
Member
Posts: 9,803
Joined: Jun 28 2005
Gold: 6.67
Mar 2 2013 02:32am
If you already have some experience, do something less boring. Maybe an IRC client or something actually useful.
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Mar 2 2013 02:47am
Quote (KrzaQ2 @ Mar 2 2013 12:32am)
If you already have some experience, do something less boring. Maybe an IRC client or something actually useful.


Seems like an IRC client might be too much of a task, if he's only made a "few very basic games" in Java.

Member
Posts: 9,803
Joined: Jun 28 2005
Gold: 6.67
Mar 2 2013 02:51am
IRC is the most trivial of protocols, half a layer above TCP, and it doesn't even need gui in its simplest version.

Besides, we don't know what he means by a basic game. I wrote a 3d opengl snake and still call it a basic game.
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Mar 2 2013 03:09am
Quote (KrzaQ2 @ Mar 2 2013 12:51am)
IRC is the most trivial of protocols, half a layer above TCP, and it doesn't even need gui in its simplest version.

Besides, we don't know what he means by a basic game. I wrote a 3d opengl snake and still call it a basic game.


"a few very basic games"

I doubt he'd need to come here asking for a first project idea if he were capable of developing a game of that caliber.



Member
Posts: 9,803
Joined: Jun 28 2005
Gold: 6.67
Mar 2 2013 03:35am
You may have skill, but no idea what to do with it. So yeah, while it's likely that you're right, it's not 100% certain.

Anyway, I browsed some of my eariler projects, maybe that'll be of some help:
,andelbrot generator
snake game
a quote engine
xor file encryptor
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll