-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
- Where can I find your repository? (Paste the url of your repository below)
https://github.com/antonmosk87/CSharpExercises - Which data type would you use to store a phone number?
string
- Surprise! Write a for loop to write out all even numbers between 1 and 100 to the console in both JavaScript and C#.
// your javascript code here
for (i = 1; i < 100; i+=2)
{
return i;
}// your c# code here
using System;
for (int i = 1; i < 100; i+=2)
{
Console.Log(i);
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels