7
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

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

Last updated at Posted at 2017-12-09

#面白そうだったので
下記の記事を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

#以上

7
1
0

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
  3. You can use dark theme
What you can do with signing up
7
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?