I've already asked this same question once, but in that case I needed it for the python language, now I need to solve this same problem with the C # language
I have a loop in C # , and I would like to enter the value of a variable each time...
I started studying C #, and my first program (except for hello world hahahaha) is an area calculator. In the code below, after I type the option (choosing which picture I want) the console simply closes.
Console.WriteLine("Bem vind...
Is it possible to know through the console?
Imagine this story: You have several JavaScript files embedded in the header of the page, and when you submit a post, nothing appears in the return input, however it's not from PHP that it's do...
I'm trying to do a simple password authentication using HTTP BA.
follow the codes:
login.php
<?php
if(!(isset($_SERVER['PHP_AUTH_USER']) && isset($_SERVER['PHP_AUTH_PW']))){
header('WWW-Authenticate: Basic realm="Restricted A...
I have the following program:
#include <stdio.h>
int a,b;
int main(int argc,char *argv[]){
int c;
printf("%d",a+b);
printf("%d",c);
return 0;
}
How do I pass a value to the global or local variable via terminal?
When I...
I'm starting to use gzip, I compress a JS file but when I call it in HTML, the error in the console.
NO HTML
<script src="/presencial/includes/jorge_includes/all/js/main.js.gz/main.js"></script>
The folder is as follows:...
I want to create a menu where the user chooses the option 1 to 5, would like the user to type the number and the program would enter the option without having to press Enter .
Here's an example
#include <iostream>
#include <cstdio...
I would like to give a basic interface to an application developed in Console Application. I want to make use of features like TUI (Text-Based User Interfaces), common in other platforms like NodeJS. Is it possible to do this in a C # applicatio...