User:Bayu198
Appearance
Im just a mid school student who like computer engineering and sometimes like to write an article on wikipedia
Project and Pages I Create
[edit]Project and Pages I Create
English Wikipedia
Engineering
Building Tech
Wikipedia Bahasa Indonesia
Random Maps
[edit]Daryal Radar Network
Operational radar station range
Abandoned radar station range
Russia
Other countries
Serpong - Cinere - Jagorawi Tollway Project
(24 June 2022)
(24 June 2022)
Operational Tollway
Paved, Not Operational yet
Future Project
Province Border
Random codes
[edit]Lua
[edit]--create a table
table1 = {"car","truck","motorbike"}
--select and print a table
print(table[2])
C++
[edit]#include <iostream>
//using namespace std;
int main()
{
std::cout << "Hello" << std::endl;
}
Random Functions
[edit]#include <iostream>
int occurrence(std::string s, char c)
{
int res = 0;
for (int i=0;i<s.length();i++)
if (s[i] == c)
res++;
return res;
}
// ...