0
Im a vegetable and i need help!
ok. so. first off, im a complete noob to coding and i want to create my first " hello world" program. i did what the instructions said, but i dont get to see the output. what to do?
7 Answers
+ 1
using System;
public class Hello2
{
public static void Main()
{
Console.WriteLine("Hello, World!");
}
}
+ 1
press upvote to thank
0
c#
0
In what language do u want to code?
0
#include <iostream>
#include <string>
using namespace std;
int main()
{
string alpha = "abcdefghijklmnopqrstuvwxyz";
for (int a = 0; a <= 25; a++)
{
cout << string(26 - a, ' ');
for (int b = 0; b <= a; b)
cout << alpha.at(b);
cout << "\n";
}
return 0;
}
0
cout outputs put that into code blocks as a console application and start editing
0
guys thank you so much!