Jump to content

Icycookies

Member
  • Posts

    53
  • Joined

  • Last visited

Awards

This user doesn't have any awards

1 Follower

Contact Methods

  • Steam
    Icycookies
  • Origin
    Icycookies
  • Xbox Live
    Cookiefan13

Profile Information

  • Gender
    Not Telling
  • Location
    Spatium hypotheticae
  • Member title
    Junior Member
  1. I already have all the parts. I was looking at htpc atx cases, but they seem too bulky. This lead me to look for a small atx case or building a small test bench? (no i am not going to put in a box lol) Also this is going to serve me as my htpc and video game system for tv Parts: asus z77 atx 660 ti 3.5 hdd silver stone standard atx power supply maybe stock cooler if corsair h60? does not fit FYI: Do not want to spend more money on this old system
  2. Found a solution i had to remove the cortana search button. After that the first pinned shortcut did not disappear.
  3. Never mind problem still present just took some time
  4. Yeah tried that right now, but it did not work. Only clicking that arrow next to the notification area works lol.
  5. Okay so i did a clean install of windows 10 and put the programs i wanted. However I have encountered a bug where the first pinned program in the taskbar disappears. It reappears only if I click on the arrow of the notification area. It is not that bothersome but is there a fix? FYI: Do not want to do clean install again
  6. Every time i reboot i have to change the dpi setting to 6000 because it boots up at 800 i think. Is it faulty because it doe not save the dpi change or is firmware or software related? I had the roccat kone xtd and it had 6000 dpi in boot able programs, Ubuntu , bios,and ath windows start up. Should i exchange it ?
  7. So the A key got stuck all the way in the bottom . I tried getting it out but i made it much worse. Now i need to venture into the world of soldering(i think) I know i am going to have to buy a new cherry mx black switch to replace this stuck one. Advice on how to fix this. What tools i need?
  8. Thank you for the help but i am only supposed to have 4 cin. so i changed it up a bit. However with this change i cannot stop it. Example: if i want sqrt it will ask me for the rest of the numbers which i do not want.
  9. program gives option to choose operation. if it is sqrt or fabs the user to enter a number. if not sqrt or fabs go to other if statement. if addition,subtraction, division, multiplication or quadratic. user asked to enter a second number if pyth user asked to enter a third number
  10. #include <iostream>#include <cmath>using namespace std;int main(){ int addition, subtraction, division, multiplication; double quadractic,pythagorean, numb1,numb2, numb3; string operation; cout << "Please choose and operation:"; cin >> operation; if (operation == "sqrt" || operation == "fabs" || operation== "addition" || operation == "subtraction" || operation== "multiplication" || operation== "division"|| operation== "quadractic" || operation== "quadractic") cout << "Please enter your first number: "; cin >> numb1; if (operation=="sqrt") cout << "sqrt" << sqrt(numb1)<< ")"; else if (operation=="fabs") cout << "fabs" << fabs(numb1) << ")"; { cout << "Please enter your second number: "; cin >> numb2; if (operation=="addition") cout << "addition("<< numb1+numb2 << ")"; else if (operation== "subtraction") cout << "subtraction(" << numb1-numb2 << ")"; else if (operation=="multiplication") cout << "multiplication(" << numb1*numb2<< ")"; else if (operation== "division") cout << "division(" << numb1/numb2 << ")"; else if (operation=="pythagorean") cout << "pythagorean(" << sqrt(numb1*numb1+numb2*numb2) << ")"; { cout << "Please enter third number: "; cin >> numb3; operation == "quadractic"; cout << "quadractic(" << (-numb2 + sqrt(numb2 * numb2 - 4 * numb1 * numb3)) / (2 *numb1)<< "," << (-numb2 - sqrt(numb2 * numb2 - 4 * numb1 * numb3)) / (2 *numb1) << ")"; } } return 0;} I had cout << statement; it worked fine but i am not using that. So how did it allow it to do the other ifs? I noted where it stops.
  11. Can you explain the void part if you do not mind? Okay running fine now thank you for the help. Now just have to fix some minor things in the outputs.
  12. Okay i put it in there. However now i only get this error Madlibs.cpp:8:1: error: expected unqualified-id before ‘{’ token { ^ Madlibs.cpp:17:1: error: expected unqualified-id before ‘{’ token {
  13. No. The professor wants the measuring stick.
×