PR #2648 real Arcanist UI E2B screenshot evidence.
The PNG in this gist was generated inside Arcanist E2B sandbox session b2a529bd-6532-4b89-a4ba-06a13a97ca8e from the actual tryarcanist/arcanist React UI code on PR #2648.
PR #2648 real Arcanist UI E2B screenshot evidence.
The PNG in this gist was generated inside Arcanist E2B sandbox session b2a529bd-6532-4b89-a4ba-06a13a97ca8e from the actual tryarcanist/arcanist React UI code on PR #2648.
PR 2648 screenshot evidence. The PNG is committed to this public gist so GitHub PR markdown can render it without private repository raw-file auth.
| #include <iostream> | |
| int main() { | |
| double height; | |
| double weight; | |
| std::cout << "What is your height in metres?\n"; | |
| std::cin >> height; | |
| std::cout << "What is your weight in kilograms?\n"; | |
| std::cin >> weight; | |
| std::cout << "Your BMI is " << (weight/(height*height)); |