Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
feet
- Page 1
Re: Is the Vision Pro worth it?
Hardware and Software
macOS
1 Month Ago
by Reverend Jim
I usually put a square tile in the middle of the floor to stand on when playing Beat Saber. Eleven Table Tennis doesn't need it because I orient myself to the VR table. I play In Death Unchained seated because there are too many vertigo-inducing places in the middle world where I could easily fall over. Some of them make my
feet
tingle.
Feet and inches to meters and cm and vice versa.
Programming
Software Development
13 Years Ago
by hao001
…choices); if(choices == 1){ getInput1(
feet
,inches); convert1(
feet
,inches,meters,cms); showResult1(
feet
,inches,meters,cms); } else if(…choices == 2){ getInput2(meters,cms); convert2(
feet
,inches,meters,cms); showResult2(
feet
,inches,meters,cms); } else if(choices ==…
Inches to Feet, Fahrenheit to Celsius
Programming
Software Development
17 Years Ago
by suziperu
…Celsius to Fahrenheit Converter C. Inches to
Feet
converter D.
Feet
to Inches Converter The program should work if… public: void FeetToInches() { cout<<"Enter
Feet
: "; cin>>A; cout<<A…= "<<0.083*A<<"
Feet
\n"; } void CelsiusToFahrenheit() { cout<<"…
Re: Inches to Feet, Fahrenheit to Celsius
Programming
Software Development
17 Years Ago
by GreenDay2001
…"; } else { cout << " oFeet << "
feet
" << oInches << "inches"; } [/code…
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by jlouang
…"); } void convertMeters(int meters) { double inches = meters / .254; double
feet
= meters / .3048; double yards = meters / .9144; double miles = meters / 1609… << " inches \n " <<
feet
<< "
feet
\n " << yards << " yards…
Help needed creating feet and inches keypad
Programming
Computer Science
20 Years Ago
by markitek
…; show up at my cursor, so i can easily enter
feet
and inches information into the text box. Current QWERTY keyboards… are not customized to make it easy to enter
feet
and inches. I am not a programmer, but would like…
printing meter yards feet
Programming
Software Development
19 Years Ago
by jlouang
… need help making a program that include meter yards and
feet
. my c+ class is only in chapter 4 of the… function 4. the output should look like: ??? meters is: ??? inches ???
feet
??? yards ??? miles my class program looks like this
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by jlouang
since i am looking for 5 problem. Wouldn't i have to name my int after main be [B]int[/B] s,r,x,y,z ; if i was tring to print out ??? meters is: ??? inches ???
feet
??? yards ??? miles
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by agiorgio
… formats. For example: [INLINECODE]printf("%d meters is %f
feet
.\n", meters, meters*3.2808);[/INLINECODE]
Anyone watched the movie "Happy Feet?"
Community Center
Geeks' Lounge
18 Years Ago
by christina>you
If you've watched "Happy
Feet
" the movie, you should definitely take a look at [URL="http://youtube.com/watch?v=g-LRuhmFSBU"]this[/URL] cute video on youtube. ;)
Lily Allen jumps into copyright debate again, with both feet
Hardware and Software
Hardware
Mobile and Wearables
15 Years Ago
by newsguy
… Allen has jumped straight back into the controversy with both
feet
. This time she appears to be confusing price and value…
GPS Feet Difference
Programming
Databases
14 Years Ago
by moone009
… with my query below. Basically I need to calculate the
feet
between two gps coordinates. Basically once I can get this…
Re: Feet and inches to meters and cm and vice versa.
Programming
Software Development
13 Years Ago
by WaltP
Does it work?
Re: Feet and inches to meters and cm and vice versa.
Programming
Software Development
13 Years Ago
by hao001
[QUOTE=WaltP;1663843]Does it work?[/QUOTE] Yah..I just need some suggestion so that i can improve it or maybe i done something wrong in this program.. =)
Re: Newbie here. How do you convert centimeters to feet in C#
Programming
Software Development
14 Years Ago
by UniqueMan
… 1 foot = 12 inches so to convert 47 inches to
feet
would look like Which would give us 1 foot 6… I convert for example 7.6 to 7'6 (seven
feet
six inches)?
Re: Newbie here. How do you convert centimeters to feet in C#
Programming
Software Development
14 Years Ago
by PsychoCoder
… 1 foot = 12 inches so to convert 47 inches to
feet
would look like [QUOTE](47 * .39370078740157477) / 12[/QUOTE] Which would…
Re: Newbie here. How do you convert centimeters to feet in C#
Programming
Software Development
14 Years Ago
by ecoloney
I suspect that request may not be worded correctly. 1 foot = 12 inches. 1 inch = 2.54 cm 12 inches = 12 * 2.54 cm = 30.48 cm Conversely, 30.48 cm = 1 foot. Therefore 1 cm = 1 foot/30.48 which means 1 cm = .0328083
feet
.
Re: Newbie here. How do you convert centimeters to feet in C#
Programming
Software Development
14 Years Ago
by PsychoCoder
You're right, I meant to type it equals 1.54
feet
not 1.65 so my bad for that. Here's how I came up with that: [QUOTE](47 x .39370078740157477) = 18.50 (/ 12) = 1.54[/QUOTE]
Re: Where to Wet My Feet?
Community Center
14 Years Ago
by JamieLynnSEO
… a natural, and using it to your advantage. Get your
feet
wet in both concentrations, and after getting experience, pick whichever…
Re: Using wxPython to create a feet-in calculator
Programming
Software Development
9 Years Ago
by colby.christensen
… frame''' def __init__(self, *args, **kwargs): kwargs.setdefault('title', "
Feet
-Inch Calculator") wx.Frame.__init__(self, *args, **kwargs) self…
Re: Why Unity 3D tutorial, one of my feet bends as i walk
Programming
Game Development
2 Years Ago
by Reverend Jim
Both of my
feet
bend as I walk. Please read [Suggestions For Posting Questions](https://www.daniweb.com/programming/threads/435023/read-this-before-posting-a-question).
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by agiorgio
What exactly is the problem with your program? What parts do you not understand or are having trouble with?
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by jlouang
im thinking the protype will be void convertMeters(int meters) then int main where i am stuck on
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by agiorgio
One method of attack for this problem would be to create separate functions for each conversion. You could have a function like this: [INLINECODE] void printMetersAsFeet(int meters); [/INLINECODE] It would perform the conversion and display the results. You could then adapt this function to perform the other conversions required of you.
Re: printing meter yards feet
Programming
Software Development
19 Years Ago
by jlouang
so far I think I have this [CODE]************************************** * libraries ***************************************/ #include <iostream> // needed for cin/count #include <cmath> // needed for math functions using namespace std; /**************************** * …
Re: Anyone watched the movie "Happy Feet?"
Community Center
Geeks' Lounge
18 Years Ago
by arjunsasidharan
haha.. that was good..:D
Re: Anyone watched the movie "Happy Feet?"
Community Center
Geeks' Lounge
18 Years Ago
by christina>you
;) Hehe... thanks..
Re: Anyone watched the movie "Happy Feet?"
Community Center
Geeks' Lounge
18 Years Ago
by linux
Hehe, I liked it. There are a bunch of those, but that one was really good.
Re: GPS Feet Difference
Programming
Databases
14 Years Ago
by BitBlt
Are you using SQL2008? You should check out the "geography" datatype. It's a CLR Assembly datatype with all kinds of .NET methods you can use (specifically the .STLength method to calculate the distance between two geo points). There's a good write-up in SQL2008 BOL. Helps you get away from all the trig. From BOL: [QUOTE]This type…
Re: GPS Feet Difference
Programming
Databases
14 Years Ago
by moone009
No, Im using 2005 so I dont have any of those built in functions unfortunately
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC