7Belo
Alfredo Gomes   Belo Horizonte, Minas Gerais, Brazil
 
 
- 2007 1st Campeonato Brasileiro de Par ou Ímpar
- 2008 1st Campeonato Mineiro de Quebra Cabeça
- 2009 7th Campeonato Mundial de Bolinhas de Gude
- 2010 Califonia, EUA 2nd Copa America das Nações de Ioiô
- 2011 Suécia 1st Campeonato Mundial de Pique-Esconde
- 2012 Toronto, Canada 1st Campeonato Mundial de Futebol de Mesa (Botão)
おすすめの作品ショーケース
_
1
おすすめの作品ショーケース
programming
2 1
お気に入りのゲーム
お気に入りのグループ
Unity - Game Engine - 公開グループ
Unity Game Developers
36
人登録
3
人がゲーム中
5
人オンライン
9
人チャット中
レビューショーケース
402 時間プレイ
Red Dead Redemption 2 features a visually stunning and highly immersive world. The attention to detail is remarkable, from the realistic weather changes to the way characters' facial expressions convey emotions.

Character animations, especially during interactions and cutscenes, are incredibly realistic, enhancing the narrative experience. Voice acting and sound design further immerse players in the atmosphere of the Wild West.
作品ショーケース
programmer
3 2
コメント
Mr Robot 4月27日 17時45分 
using System;

class Program
{
static void Main()
{
Console.WriteLine("Sou um programador de jogos e minha vida é cheia de emoções:");
Console.WriteLine();

int quantidadeProblemas = 99;
string pluralProblemas = quantidadeProblemas == 1 ? "problema" : "problemas";

for (int i = quantidadeProblemas; i > 0; i--)
{
Console.WriteLine($"Tinha {i} {pluralProblemas} no código,");
Console.WriteLine($"Tinha {i} {pluralProblemas},");
Console.WriteLine($"Peguei um, corrigi,");
Console.WriteLine($"Agora tem {i - 1} {pluralProblemas} no código!");
Console.WriteLine();
}

Console.WriteLine("Agora meu código está perfeito... Ou não!"); }}