TRENDING NEWS

POPULAR NEWS

Which Programme Should I Use To Make Ios 8 Concept

How long does it take to learn programming?

Now don't give me that 10 years crap because i see people as old as 16 freaking breezing through websites and getting the latest playboy issue for free.

I need to knwo at what point can i write a program because if it takes 10 years to write a program i may aswell stop now.

currently i am learning python via MIT's freecourseware on Youtube its a beginners class, will i be able to write my own program after going through that course??

also if someone experienced could give me a time spent learning vs the difficulty of program estimate .
like if i spent 3 months learning what kind of program can i write???

and if you are interested i am 18 and my IQ is 119 i know its not that great but i think i am smart enough to be a programmer because i like to solve problems and i hear thats the big thing in programming.

How long would it take a complete beginner to learn C programming language?

If you studied it every day for hours a day I would say 6-10 months to be able to do any sort of real word work with it. And that's no where near mastering it.

What programming language can I choose to build a native iOS mobile app in 8-10 weeks?

Truly native? Swift, Objective-C, or both. That’s it.

Help with Microsoft Visual C++ programming?

I have an assignment that requires for me to display a calculation to get the answer 389,767. I did the calculations but the command prompt screen won't display 389,767.

Here is the assignment:
One acre of land is equivalent to 43,560 sq ft. Write a C++ program that calculates and displays the number of acres in a tract of land with 389,767 sq ft.

My calculations is 389,767 / 43,560=8.9478191. so for every 1 acres(43,560 sq ft) should be times 8.9478191 and give me the asnwer but it doesn't. I need help.

P.S. the setprecision/ showpoint isn't the solution for me.

my program:
#include
#include
using namespace std;

int main()
{
int acre;
double numAcres;
double tractOfLand;

numAcres=8999.9899; <------I don't know what I did right here
acre=43,560;


cout<<"Number of acres in a tract of land with 389,767(sqft).\n"<
tractOfLand=numAcres*acre;

cout<cout<
return 0;
}

TRENDING NEWS