LoginSignup
1

More than 5 years have passed since last update.

posted at

updated at

「強いエンジニアにHelloWorldさせてみた」をC++でやってみました。

面白そうだったので

下記の記事をC++で私もやってみました。
強いエンジニアにHelloWorldさせてみた(縛りあり) https://qiita.com/imishinist/items/1883b5eef836aeee93ff

ソース

#include    <cstdio>
#include    <iostream>
int main()
{

































































    char F = (char)__LINE__;


    char I = (char)__LINE__;


    char L = (char)__LINE__;








    char U = (char)__LINE__;

    std::cout << L << I << F << U << L << L << std::endl;

    return 0;
}

結果

無題.png

以上

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
What you can do with signing up
1