User:Cabra/Sandbox: Difference between revisions

From TestWiki
Content added Content deleted
(Created page with "<div style="float: right;"> __TOC__ </div> This 1 2 3 4 6 7. <br>EEEEEh == First header == First one. == Second header == Second one. == Trird header == Third one. === Fir...")
 
No edit summary
Line 8: Line 8:
First one.
First one.


== Second header ==
== Code example ==
<pre style="padding: 10px; border: 1px solid white; border-radius: 4px; witdh: 100%; background-color: #BBBBBB;">
Second one.
#include <iostream>

int main()
{
int x{0};
while (x != 8)
{
std::cout << "Ehh\n";
x += 1;
std::cout << "x = " << x << '\n';
}
return 0;
}
</pre>
Why is this thing even here? lol


== Trird header ==
== Trird header ==

Revision as of 16:40, 22 September 2021

This 1 2 3 4 6 7.
EEEEEh

First header

First one.

Code example

#include <iostream>

int main()
{
   int x{0};
   while (x != 8)
   {
      std::cout << "Ehh\n";
      x += 1;
      std::cout << "x = " << x << '\n';
   }
   return 0;
}

Why is this thing even here? lol

Trird header

Third one.

First lesser header

Fourth one.

Fourth header

Fifth one.