Guess who just found out about 7.0 banners.... Tell what do I do now??

Long story short, got my first double five star on the chronicled.. it was 10-15 pity, lost it to skyward blade and I was like satisfied cuz yk benny finally get's his upgrade and boom SSoS pops up, i was on cloud 9 and thought now I can pull C1 citlali, but now am fking confused who should i pull.

I am definitely pulling oddete, but the problem is that i thought arle won't rerun for some decent time and I can just later get her sig for drop but now sheesh- so tell me what should I get? C1 citlali, or save for 7.0?

If save them what's better C2 or the drip from weapon ( honestly think I can wait another year for weapon lol )

reddit.com

How can I declutter whatever this is that i came up with

#include <iostream>
#include <cmath>
#include <cstdlib>


int main () {
  double Temp,eq_Temp;
  char unit, d_unit;
  const char K = 'K', F = 'F', C = 'C';


  std::cout << "************Temperature Converter************" << std::endl;
  std::cout << "C stands for Celsius, K for Kelvin and F for Fahrenheit" << std::endl;
  std::cout << "Enter conversion ( use format = 'Temperature' 'unit') : " << std::endl;
  std ::cin >> Temp >> unit;
  std::cout << "Enter desired unit : " << std::endl;
  std::cin >> d_unit;


  if ( unit == F && d_unit == C) {
    eq_Temp = ( Temp - 32 ) * (5/9);
    std::cout << eq_Temp << d_unit << std::endl;
  } else if ( unit == F && d_unit == K) {
    eq_Temp = (( Temp - 32 ) * (5/9)) + 273.15;
    std::cout << eq_Temp << d_unit << std::endl;
  } 
  else if ( unit == C && d_unit == F) {
    eq_Temp = (Temp * 9/5) + 32;
    std::cout << eq_Temp << d_unit << std::endl;
  }  else if ( unit == C && d_unit == K) {
    eq_Temp = Temp + 273.15;
    std::cout << eq_Temp << d_unit << std::endl;
  }  
  else if ( unit == K && d_unit == C) {
    eq_Temp = Temp - 273.15;
    std::cout << eq_Temp << d_unit << std::endl;
  }  else if ( unit == K && d_unit == F) {
    eq_Temp = ((Temp - 273.15) * (9/5)) +32;
    std::cout << eq_Temp << d_unit << std::endl;
  }  else {
        std::cout << "Invalid Input, try again" << std::endl;
  }
  return EXIT_SUCCESS;
}

If it's not clear yet, I am new

reddit.com
u/InternationalWest912 — 13 days ago

[C++ noob] so here the other day i was introduced to <cmath>.

i got introduced to <cmath> (still onto this )the day before yesterday then got depressed due to some shit life throws at you and randomly went "Welp, I can make a quadratic equations solver with this"

https://preview.redd.it/cqopj1ghzf8h1.png?width=841&format=png&auto=webp&s=52d57176dd2466a70f2e8da11fa9ae207bb9c2c4

how can i improve this?

(slightly lengthy rant ahead )

also, great thanks to u/mredding , although i didn't understand like 90% what they told me, the remaining 10% did help me understand code a bit more and i wanna say, i don't think i can understand what u call simple at all, but that's due to being new to c++.

other than that, i did try to make my code a bit more to the point and not variable spam ( just remembered to replace "return 0" with "return Exit_Success" ) and now understand how to use if/else. and the reason the "#include <iostream>" are below cuz it's my practice folder i like to keep them near the what i'm doing in case i need to add smt.

reddit.com
u/InternationalWest912 — 17 days ago

what teams for upcoming SO?

the characters NOT built - alhaitham, illuga, iansan, mona, xl ( semi built- artifacts missing ), gorou, tighnari

currently building - mav, xianyun, rosaria, gaming, scroll/noblese pmc, chev

what teams i can use for next stygian? I wanna clear fearless, never cleared it only cleared menacing twice aiming high this time.

The r1/2 means - arle : pjws Gaming - tidal shadow Lanyan - ttds Xianyun - skyward atlas Fischl and linnea - skyward harp Navia - wolfs gravestone Tighnari - slingshot Pmc ( an accident) Illuga - dragon's bane

I will be skipping sandrone for either citlali or SoSS, wish me luck, 160 pulling for c6 benny .

u/InternationalWest912 — 18 days ago

(complete newbie) IDK man, too proud for this ( 1 ish hour in C++)

ahhhhh yes, cant post pics.... here lol https://gist.github.com/Copp3r-1ngot/17af8ee0c992766b096a5f3078addbc9 (thanks mods for there patience )

just started doing c++ like few days ago super slow cuz felt kinda toooo bland,

i'm watching "programming with mosh" and "bro code" on yt for this and just reached arithmetic operations, lwk was eating dinner when suddenly it struck me.... "WAIT!!! inst that how a fking calc ( short for calculator ) works????" and boom, finished my dinner and hopped on vs code.

thankfully due to me seeing the use of " if " and " else " in some random vid i dont remember... and with the help of copilot suggestions ( i still dont understand the syntax of if and else ) I made a simple calculator.

Too proud man

u/InternationalWest912 — 20 days ago