Im a vegetable and i need help! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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?

19th Dec 2016, 8:27 PM
Daniel
Daniel - avatar
7 Answers
+ 1
using System; public class Hello2 { public static void Main() { Console.WriteLine("Hello, World!"); } }
19th Dec 2016, 8:37 PM
S. Saeed Hosseini
S. Saeed Hosseini - avatar
+ 1
press upvote to thank
19th Dec 2016, 8:42 PM
S. Saeed Hosseini
S. Saeed Hosseini - avatar
0
c#
19th Dec 2016, 8:31 PM
Daniel
Daniel - avatar
0
In what language do u want to code?
19th Dec 2016, 8:31 PM
S. Saeed Hosseini
S. Saeed Hosseini - avatar
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; }
19th Dec 2016, 8:32 PM
John Doe
0
cout outputs put that into code blocks as a console application and start editing
19th Dec 2016, 8:32 PM
John Doe
0
guys thank you so much!
19th Dec 2016, 8:42 PM
Daniel
Daniel - avatar