C/C++ :: Taking True Bool And Having It Display Statement Instead Of 1 Or 0
Dec 4, 2014
I am again a bit confused with bool since we have not used them much. I understand it is suppose to return a true or false value that is represented by 0 and 1. so I have these two bool's
bool Triangle::isRight() {
if (pow(largestSide(), 2) == (pow(smallestSide(), 2) + (pow(middleSide(), 2)))) {
return true;
} else {
return false;
[Code] ....
and then I cout to display them
cout << "Is this a right triangle: " << t2.isRight() << endl;
cout << "is this a Triangle: " << t2.isTriangle() << endl;
and i get this
"Is this a right triangle: " 0
"Is this a triangle: " 1
Which i know is correct but I want to replace the 1 and 0 with my own string but the things iv tried tweaking with has not worked.
Also in the file attached has some requirements from my teacher but i was confused at the second last one, --- bool isEqual(Triangle &other) and it says return true if triangles are equal and false if triangles are not.
I dont know if this is just simply if one triangle equals another (however you determine that) or if its for the two bool's, isTriangle() and isRight() or what.
Attached image(s)
View 2 Replies
ADVERTISEMENT
Mar 11, 2014
I'm new to c++ and bought the Jumping in C++ ebook. I read about the bool type but was confused about what it is and when I used it.
View 5 Replies
View Related
Mar 18, 2013
i cant display the data written to this file in a switch statement (case 2) what am i doing wrong..the file data is being written into the text file but i cant display it
insert
Code:
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
FILE *fp; //creates a file pointer
typedef struct date_info
[Code].....
View 8 Replies
View Related
Oct 21, 2013
Can I do the following? Is it a good practice?
Code:
bool *bAct;
bAct = (bool*) calloc (2, sizeof(bool));
for (i=0;i<2;++i)
{
bAct[i] = true; //initialize
}
I need an array of bools for my application.
View 5 Replies
View Related
Aug 24, 2014
I hardcoded an assignment so it is very long.. but i get this error
warning C4305: 'initializing' : truncation from 'int' to 'bool'
Here is the code
#include <iostream>
#include <string>
using namespace std;
int main() {
int Atlanta = 1;
int Austin = 2;
[Code] ......
View 6 Replies
View Related
Jan 21, 2015
I want to change string to bool but I'm having trouble doing this.
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int check_Pythag(int DIMA, int DIMB, int DIMC) {
[Code] ....
View 2 Replies
View Related
Aug 15, 2014
Im supose to use <>bool removeTile(char, int, int, char[])<> to do this "function that takes in the choice (D or S) and the two dice numbers and the board as input arguments. When the move is legal and the tile is available for removal, it removes the tile according to the choice by marking the tile as ‘X’. Returns true if the move is successful."
View 4 Replies
View Related
Mar 14, 2013
void(..)
bool(..)
Direct to the board[8][8].
View 7 Replies
View Related
Sep 17, 2013
My issue is regardless of which date I input its always defaulting to the values I have set in my constructor in my implementation file in the else statement. So the values always default to 3/15/2006 I think its something to do with the logic in my bool function but I may be incorrect.
header
//date.h header
#include <iostream>
#include <string>
using namespace std;
enum DateFormat {numeric, standard, alternative};
const int MIN_YEAR = 1900;
const int MAX_YEAR = 2015;
[Code] ....
View 4 Replies
View Related
Nov 5, 2013
How to get my data from the file and output, but now I am having trouble with my acceleration function. Right now, I have the acceleration function commented out and the output for acceleration at the bottom because if I try to run the program with them in it the program stops working. working with acceleration calculations and then finally outputting that acceleration.
//Program that reads the time and vertical velocity data and then calculates things from it
#include <iostream>
#include <cstdlib>
#include <vector>
#include <fstream>
#include <iomanip>
using namespace std;
bool calculateAccelerationArray (vector<double> t_array, vector<double> v_array, vector<double>
[Code] ....
The file I'm reading from rocketVelocityData.txt gives me the time and velocity.
View 3 Replies
View Related
Sep 14, 2013
I've read up on .bmp files on wikipedia and am currently attempting to make a function that can export a .bmp file of the screen of my programs. I've already begun work on it but it isn't working. The code I have so far is:
typedef char Byte;
typedef int Byte4;
typedef short Byte2;
struct BMP_Header {
[Code] ....
My problems are that when less then the required amount of bytes is needed to store a value in the file, the 00 bytes are skipped (Ex. The file will contain 42 instead of 42 00 00 00), and the Pixels are stored as nothing but 0D ( every value intended for storing pixel data is 0D ).
View 4 Replies
View Related
Nov 12, 2014
I decided to code my own GUI menu. getting to another page from a button click. I have added the event handler I think (click="Button_click") then in the event handler I have added this:
private void Button_Click(object sender, System.EventArgs e);
}
Response.Redirect("Login.xaml");
}
After researching it says either to use
Response.Redirect("Login.xaml");
OR
Server.Transfer("Login.xaml");
Neither of these work, underlining "Response" and "Server" as an error saying "A namespace cannot directly contain members such as fields or methods."
NOTE: MY MAIN GUI PAGE IS CALLED "mainpage.xaml" THE CODE ABOVE IS STORED IN THE "mainpage.xaml.cs" THIS MIGHT BE RIGHT OR WRONG BUT I'M NOT SURE SO I AM LEAVING SOME EXTRA INFO!
View 1 Replies
View Related
Dec 10, 2013
how to use bool to identified a identity matrix
View 7 Replies
View Related
Jun 24, 2014
Is the bool keyword in C exactly like the boolean keyword in Java? why this code is getting an 'unknown type error' when I initiialze looping.
#include <stdio.h>
#include <stdlib.h>
int main()
[Code].....
If I am completely using the boolean concept wrong in C, should I just use break statements instead?
View 11 Replies
View Related
May 15, 2012
I am designing a database query and need simplification to the algebra:
Code:
((x > u) && (x < y)) || ((z > u) && (z < y)) || ((u > z) && (y < x))
And these are always true:
Code:
z > x
u > y
It's a range overlap algorithm.
View 4 Replies
View Related
Oct 2, 2013
This program that I've made works fine to find midpoint, but not distance. The distancefunction always returns a 1 (true). To try to see that it wasn't the math, I added cout.setf(cout.boolalpha) to see and got a result of "true".
//This program is a start to solve basic coordinatre plane distances and midpoints
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
[Code].....
View 3 Replies
View Related
Oct 27, 2013
I have created this code; it is a taxi management system. I've made a class 'List' which handle a linked list structure of the waiting taxis and waiting passengers. The class has a public int variable: waiting, which keeps track of the number of waiting taxis/passengers.
#include<iostream>
using namespace std;
class Queue{ //Class for indivdual taxis and passengers, which will be members of linked list.
public:
string id;
Queue *next;
Queue (){
[Code] .....
But when I run the code and type in a new taxi number, the code does not increment the number of taxis by one the linked list by one. I can't seem to find the problem.
BTW, in the 'int main', I've added "<< taxi_list.waiting" at the end of the line after the user inputs the new taxi registration number, so that I can see how many taxis are now on the list. This is what is being shown as zero, no matter what.
View 2 Replies
View Related
Dec 13, 2014
I am trying to work on a C++ program to calculate the quadratic formula using input files and classes. I have written my class, but I am trying to find a way to take an input file with unknown number of lines of coefficients. How do I take each integer from each line and set that value as "a" and "b" and so forth, then start over on the next line?
This is what i have so far.
fstream inputfile;//users input quadratic coefficients file
ofstream outputfile;// outputs a file with solutions
int main(int argc, char *argv[])// argc is argument count, char *argv[] is array of array of characters for arguments {
string dataline;
getline(inputfile, dataline);
[code].....
View 1 Replies
View Related
Nov 18, 2014
Ok so I have a class that takes integer fractions and I want it to be able to take doubles also depending on what the user inputs. How would I go about this? I was thinking templates ...
View 7 Replies
View Related
Jan 28, 2011
i m working in C"et and get this error message Dispose(boo) no suitable methode found to override
That is my code
protected override void Dispose(bool disposing) {
if (disposing && ( components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
View 6 Replies
View Related
Oct 3, 2012
I sew lot of sample for ASP WEB API. In althose link the post method is using
HttpResponseMessage as return tyope
Is it possible to use return type bool in WEB API post method?
View 1 Replies
View Related
Mar 5, 2013
I am trying to write a simple program that produces different outputs based on entered age of two different users. Program should tell who is older and behave different if both users are older than 100.
Here is my program: Code: #include <iostream>
using namespace std;
int main()
{
[Code].....
Why program executes this when both users are obviously more than 100
View 8 Replies
View Related
Jan 3, 2015
The task is to return the number of bits set to true.Here is my code:
Code:
int cardinalityBS(PBitSet _this) {
int s, counter = 0;
for(s = 0; s < 31; s++) {
counter += _this->bits & 1;
_this->bits <<= 1;
}
return counter;
}
[code]....
The code is not working, since whenever I set _this->bits to a number, it returns me the wrong result.
View 7 Replies
View Related
Sep 11, 2014
is it true or false
a function like void myfun(int num){} can receive type "int var" but can't receive type "const int var"
AND
a function like void myfun(const int num){} can receive both type "int var" and also type "const int var"
View 3 Replies
View Related
Feb 7, 2014
My assignment : "Input the answer as the words true or false and put the user's answer in a boolean alphabetic variable."
My code:
bool T;
cout << "Type 'true' for lowercase or 'false' for uppercase";
cin >> T;
if (T == "true") {
cout << "Enter a whole number in decimal base: ";
cin >> dec;
cout.setf(ios::showbase);
cout << "Decimal " << dec << " to Hexadecimal with lowercase: " << setbase(16) << dec;
}
I'm not sure how to get 'true' as user-input as true for bool.
View 3 Replies
View Related
Jul 22, 2014
How can I take in a path name like "C:myfolderfile.txt" where the user enters exactly that? I've tried putting the arg into a string, then looping through the string to find the '\', but by that time it is too late as c++ considers the '' as a escape character.
Is this even possible? I've googled it and everyone just says to make the user input the path with double \ or with a /.
View 1 Replies
View Related