기본 콘텐츠로 건너뛰기

C++ A5 submitted main()

#include <iostream>
#include "findPytha.h"
using namespace std;
//@writer 5396952 Hyeonmin LEE
int main(){
 FindPytha findPytha;

 int side1 = 0;
 int side2 = 0;
 int hypo = 0;
 int pythaSum = side1 +side2 + hypo;
 int num = 0;
 double sqrHypo = 0;
 int i = 0;
 int j = 0;

  while(side1 <= 500){
   side1++;
   side2 = side1;
   while(side2 <= 500){
    side2 ++;
    sqrHypo = findPytha.getSqrHypo(side1, side2);
    hypo = findPytha.getHypo(sqrHypo);
 
    if( hypo != 1 && hypo <= 500) {
     num ++;
     cout << num << ". " << side1 << " " << side2 <<" " << hypo << "\n";
    }
 
   }
  }

}

//there was big difference to put side2=side1, i don't know why it is necessary....
still I failed to make my own loop but I'm enough proud of my header file!
질투와 승부욕은 배움의 좋은 채찍이기도 하면서 1도 도움이 안 될 때가 있다.
원래 배움이란 주고 받고 하면서 서로 배우는 것이다. 나눔에 인색하지 말자 인간들아

댓글

이 블로그의 인기 게시물

JS 5.5 task6 Create an extendable calculator

<HTML>   <body>   </body>   <script> function Calculator() {   let methods = {     "-" : (a, b) => a - b,     "+" : (a, b) => a + b   };   //methods is an object which keeps key for operators   //and value to return the actual operation values   //each returns the result of operation that key(operator) does   this.calculate = function (str){     //calculate is one element in the function Calculator     //it takes the string and returns the value     //in the function element list is delimeted by , not ;     let split = str.split(" "),     a = +split[0],     op = split[1],     b = split [2]     if(!methods[op] || isNaN(a) || isNaN(b)) {       return NaN; // error handling     }     return methods[op](a,b);   }   this.addMethod = function(name, func){     methods[name] = func;     //this is how to add new key and ele to object   } } let powerCalc = new Calculator; powerCalc.addMethod("*&

JS 5.7 task5 Store read dates

<HTML>   <body>   </body>    <script>    let messages = [        {text: "Hello", from: "John"},        {text: "How goes?", from: "John"},        {text: "See you soon", from: "Alice"}    ];    let readMap = new WeakMap();    alert(readMap.size);    readMap.set(messages[0], new Date(2019, 3, 5));   </script> </HTML> <!-- task4 needed weakSet to save simply readmessage, this task needs to save THE TIME IT WAS READ along with the message itself the message out of the set or map means it hasn't been read I kinda feel good and bad at the same time to happen to read the solution but I do get to think more about the difference with tasks and be more available to understand the main contents so I think, its good? -->

How to set base url when deployed in Heroku? : base url and axios

https://stackoverflow.com/questions/47164330/axios-api-calls-in-heroku/47165888 baseUrl = process.env.baseURL || "http://localhost:5000" Even more stable way https://stackoverflow.com/questions/52129849/how-to-get-the-base-url-variable-on-a-deployed-heroku-node-app const production  = 'https://examplePage.com'; const development = 'http://localhost:3000/'; const url = (process.env.NODE_ENV ? production : development); process.env.NODE_ENV will resolve to undefined if you are running on localhost production mode. and return production if you have deployed the app production mode.