Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ruler501

Pages: 1 ... 152 153 [154] 155 156 ... 184
2296
TI-Nspire / Re: Just one more idea for the NSpire
« on: March 09, 2011, 09:52:50 pm »
TI-Connect can not detect my Nspire touchpad 2.0. I had the touchpad in. I will now try it with my 84+SE keypad in.
Are there any special settings I should run TI-Connect with?

EDIT: My compuer recognized it and installed a driver. Will run TI-Connect in one sec
EDIT2: I have searched 3 times with TI-DeviceExplorer and have not found it. How do I find it?
EDIT3: I just subitted this to TI-CARES about the problem(I will probably soon be on their blacklist)
Quote
I have been trying to download software to the 84+ Silver Edition emulator in my TI-Nspire. Whenever I try to link up with it with the keypad in none of the software you provide has managed to find it. I have  tried the TI-Nspire Student Software, The TI-Nspire Linking Software, and TI-Connect. None of these has been able to connect with the calculator when it has the 84+ keypad in. I have used the latest version of all of these software. Please help. I would very much like to be able to load programs and apps to my calculator to use.

2297
TI-Nspire / Re: Just one more idea for the NSpire
« on: March 09, 2011, 06:48:12 pm »
It's not working for me either. How do you get it to work?

2298
Miscellaneous / Re: topic about yesterday
« on: March 09, 2011, 08:19:27 am »
I've been wondering this for a while and I know no way to find it out without debates. what religion are people here. i was thinking we might be able to do a poll just to see. We'd have to lock the thread to prevent religious arguments though...
This has just been an idea I had for a while and wanted to see if someone could implement


Sorry If I seem to have gotten off-topic

2299
Miscellaneous / Re: Sports
« on: March 08, 2011, 07:09:38 pm »
Oh, I also play Math, I'm a "Mathlete"  :P
This is me too

2300
Computer Programming / PPTX converter
« on: March 07, 2011, 11:10:01 pm »
My clas has begged me to write an executable converter which they will place in the homework drive of my schools computers. My school will not allow us to install the compatibility pack and we are currently using Microsoft Office 2003. Could someone please help me in how to do this. I will do it in any compiled language i could possibly quickly learn enough of.(C++ preffered because of prior knowledge)
Thank you to anyone who might help

2301
UberGraphX / Re: Project Paradise - Ubercalculator
« on: March 07, 2011, 10:15:55 pm »
I am thinking we should have at least a partially different GUI for the developers and standard. standard needs more of a math/school focused. You would want the developers to have a more easy to create and power programs interface though. I do not think it should be too hard for us to create a good GUI for each version. If we had to choose which one to do first I would suggest the standard because it is the one schools might order. And schools are major business for all calculators.

2302
Computer Programming / Re: C++ compiler errors
« on: March 07, 2011, 06:09:06 pm »
I will repost my code in a second. I redid it with printf instead of the couts
sprintf doesn't exist according to Dev-C++

Too many semicolons... I like python

Here is my code
Code: [Select]
#include <iostream>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int randomgen(int range, int bottom);
int addition();
int subtraction();
int multiplication();
int division();
int simplelinear();

int score=0, wrongs=0;

int main()
{
srand(time(NULL));
int randint;
for(int i=0; i<20; i++)
{
        cout << score;
        cout << "\n";
        cout << i;
        cout << "\n";
if(score<3)
{
randint=randomgen(6,0);
if(randint==5)
{
wrongs+=addition();
}
else if(randint==4)
{
wrongs+=subtraction();
}
else if(randint==3)
{
wrongs+=multiplication();
}
else if(randint==2)
{
wrongs+=division();
}
else if(randint==1)
{
wrongs+=simplelinear();
}
/* else
{
randint=randomgen(3,0);
if(randint==0)
{
wrongs+=determinant();
}
else if(randint==1)
{
wrongs+=scalarmultiplication();
}
else
{
wrongs+=cts();
}
}*/
if(wrongs>=10)
{
                break;
            }
}
}
system("PAUSE");
}
//Function Definitions
int randomgen(int range, int bottom)
{
int iSecret;
iSecret = rand()%range+bottom;
return iSecret;
}

int addition()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(600, 50);
printf("what is %d+%d ", numone, numtwo);
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score++;
return 0;
}
else
{
wrongs++;
return 0;
}
}

int subtraction()
{
int numone, numtwo, answer;
numone=randomgen(200, 799);
numtwo=randomgen(800, 1);
printf("what is %d-%d ", numone, numtwo);
cin >> answer;
cout << "\n";
if(answer==numone-numtwo)
{
score++;
return 0;
}
else
{
        wrongs++;
        return 0;
    }
}

int multiplication()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(750, 50);
printf("what is %d*%d ", numone, numtwo);
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score+=2;
return 0;
}
else
{
wrongs++;
return 0;
}
}

int division()
{
int numone, numtwo, answer;
numtwo=randomgen(350, 50);
numone=numtwo*randomgen(900, 100);
printf("what is %d/%d ", numone, numtwo);
cin >> answer;
cout << "\n";
if(answer==numone/numtwo)
{
score+=2;
return 0;
}
else
{
wrongs++;
return 0;
}
}

int simplelinear()
{
int numone, slope, intercept, answer, correct;
slope=randomgen(50, 1);
intercept=randomgen(300, 500);
correct=randomgen(200, 1);
numone=slope*correct-intercept;
printf("what is x if %dx+%d=%d ", slope, intercept, numone);
cin >> answer;
cout << "\n";
if(answer==correct)
{
score+=2;
return 0;
}
else
{
wrongs++;
return 0;
}
}

I have a slight problem with simplelinear. It is not getting the correct answer. Could someone please tell me what I did wrong

EDIT: Norton only blocks in when I compile it in Microsoft visual C++. Dev C++ seems to not cause "viruses".

2303
Computer Programming / Re: C++ compiler errors
« on: March 07, 2011, 01:37:44 pm »
I'm not sure how to I just taught myself most of this a little while ago. Any help would be appreciated

EDIT: Here is my newer code
Code: [Select]
#include <iostream>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int randomgen(int range, int bottom);
int addition();
int subtraction();
int multiplication();
int division();

int score=0, wrongs=0;

int main()
{
srand(time(NULL));
int randint;
for(int i=0; i<20; i++)
{
if(score<3)
{
randint=randomgen(6,0);
if(randint==5)
{
wrongs+=addition();
}
else if(randint==4)
{
wrongs+=subtraction();
}
else if(randint==3)
{
wrongs+=multiplication();
}
else if(randint==2)
{
wrongs+=division();
}
/* else if(randint==1)
{
wrongs+=simplelinear();
}
else
{
randint=randomgen(3,0);
if(randint==0)
{
wrongs+=determinant();
}
else if(randint==1)
{
wrongs+=scalarmultiplication();
}
else
{
wrongs+=cts();
}
}*/
if(wrongs>=10)
{
                break;
            }
}
}
system("PAUSE");
}
//Function Definitions
int randomgen(int range, int bottom)
{
int iSecret;
iSecret = rand()%range+bottom;
return iSecret;
}

int addition()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(600, 50);
// cout << "What is %d + %d equal ", numone, numtwo; uncomment when figure out how to make it work
cout << "What is " << numone << "+" << numtwo << " equal ";
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score++;
}
else
{
wrongs++;
}
}

int subtraction()
{
int numone, numtwo, answer;
numone=randomgen(200, 799);
numtwo=randomgen(800, 1);
cout << "What is " << numone << "-" << numtwo << " equal ";
cin >> answer;
cout << "\n";
if(answer==numone-numtwo)
{
score++;
}
else
{
        wrongs++;
    }
}

int multiplication()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(750, 50);
cout << "What is " << numone << "*" << numtwo << " equal ";
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score+=2;
}
else
{
wrongs++;
}
}

int division()
{
int numone, numtwo, answer;
numtwo=randomgen(350, 50);
numone=numtwo*randomgen(900, 100);
cout << "What is " << numone << "/" << numtwo << " equal ";
cin >> answer;
cout << "\n";
if(answer==numone/numtwo)
{
score+=2;
}
else
{
wrongs++;
}
}

2304
Computer Programming / Re: C++ compiler errors
« on: March 07, 2011, 01:36:01 pm »
right now I am using this as a work around
cout << "What is" << numone << "+" numtwo << "equal"

2305
Computer Programming / Re: C++ compiler errors
« on: March 07, 2011, 01:30:33 pm »
system("Pause") is supposed to pause the system

and I found out it was just my AntiVirus(Norton) blocking it.

The %d is not working to add in the variable names how do I do that another way?

2306
Computer Programming / C++ compiler errors
« on: March 07, 2011, 08:34:15 am »
I am using Microsoft Visual C++ 2010 and when I compile thic code. It then says running for about a minute then goes away. I never see anything from my program run. what am I doing wrong this has never happened to me before while I was using this software.

This is my code for a MAP style test in math
Code: [Select]
/* rand example: guess the number */
#include <iostream>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
using namespace std;

int randomgen(int range, int bottom);
int addition();
int subtraction();
int multiplication();
int division();

int score=0;

int main()
{
srand(time(NULL));
int randint, wrongs=0;
for(int i; i<20; i++)
{
if(score<3)
{
randint=randomgen(6,0);
if(randint==5)
{
wrongs+=addition();
}
else if(randint==4)
{
wrongs+=subtraction();
}
else if(randint==3)
{
wrongs+=multiplication();
}
else if(randint==2)
{
wrongs+=division();
}
/* else if(randint==1)
{
wrongs+=simplelinear();
}
else
{
randint=randomgen(3,0);
if(randint==0)
{
wrongs+=determinant();
}
else if(randint==1)
{
wrongs+=scalarmultiplication();
}
else
{
wrongs+=cts();
}
}*/
}
}
system("PAUSE");
}
//Function Definitions
int randomgen(int range, int bottom)
{
int iSecret;
iSecret = rand()%range+bottom;
return iSecret;
}

int addition()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(600, 50);
cout << "What is %d + %d equal ", numone, numtwo;
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score++;
return 0;
}
else
{
return 1;
}
}

int subtraction()
{
int numone, numtwo, answer;
numone=randomgen(200, 799);
numtwo=randomgen(800, 1);
cout << "What is %d - %d equal ", numone, numtwo;
cin >> answer;
cout << "\n";
if(answer==numone-numtwo)
{
score++;
return 0;
}
else
{
return 1;
}
}

int multiplication()
{
int numone, numtwo, answer;
numone=randomgen(900, 100);
numtwo=randomgen(750, 50);
cout << "What is %d * %d equal ", numone, numtwo;
cin >> answer;
cout << "\n";
if(answer==numone+numtwo)
{
score+=2;
return 0;
}
else
{
return 1;
}
}

int division()
{
int numone, numtwo, answer;
numtwo=randomgen(350, 50);
numone=numtwo*randomgen(900, 100);
cout << "What is %d / %d equal ", numone, numtwo;
cin >> answer;
cout << "\n";
if(answer==numone/numtwo)
{
score+=2;
return 0;
}
else
{
return 1;
}
}

It also shows these errors when the code is running
Code: [Select]
'MAP.exe': Loaded 'E:\MAP\MAP\Debug\MAP.exe', Symbols loaded.
'MAP.exe': Loaded 'C:\WINDOWS\system32\ntdll.dll', Cannot find or open the PDB file
The program '[8712] MAP.exe: Native' has exited with code -1073741790 (0xc0000022).

2307
Art / Re: photoshop project critique
« on: March 06, 2011, 06:09:32 pm »
May i use this as a background In a powerpoint for my science class?

2308
Miscellaneous / Re: How many incomplete projects?
« on: March 06, 2011, 05:51:20 pm »
I have a python 2d shooter game I've been working on which has temporarily stalled
I am working on a robot for google science fair
new version of MAP(in C++)
Math book for 5/6th graders that will teach everything from algebra to Calculus
I have many other small projects I am working on and off on that have never gotten very far

2309
Other / Re: iPod touch
« on: March 06, 2011, 05:45:45 pm »
I would think so. I just have experience with calcs stolen. Even though my experience was not with a personal calc. It was a school calc I was using for UIL.

2310
Other / Re: iPod touch
« on: March 06, 2011, 03:53:36 pm »
That would stink if they stole your calc. I don't have a laptop so I don't know about that.

EDIT: My post count is not found I guess

Pages: 1 ... 152 153 [154] 155 156 ... 184