这是我的代码:
int main(void)
{
char newr;
lol:
scanf("%c", &newr);
switch (newr) {
case 'a':
goto killswitch;
case 'b':
printf("You entered %c", newr);
goto lol;
break;
default:
printf("you entered something other than a or b\a\n");
go
我想接受powershell中的输入,但我希望它是多行的,如果我尝试用read-host来实现它,它就不能工作,因为当我按enter键时,它就提交了。我在`n和\n上都试过这个,但是没有什么效果。
$test = read-host Enter Stuff
Enter stuff:
Test `n test \n test
$test
Test `n test \n test
请帮帮忙
我现在在学科特林。所以在我所做的过程中,我写了这段代码:
package connectfour
import java.util.*
var rows : Int = 0
var columns : Int = 0
fun main() {
val scanner = Scanner(System.`in`)
val regex = Regex("[5-9]\\s?[Xx]\\s?[5-9]")
//Print program title
println("Connect Four")
println("Fi
我的问题主题可能会被忽略,但请试着理解我的问题。我有一个C#代码,用于解决我的问题:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
namespace Chef
{
class Program
{
static void Main(string[] args)
{
int t = int.Parse(Console.ReadLine());
我对powershell很陌生,因此我的手指按错了键,这就产生了>>符号。我如何“撤销”,以继续最初的脚本?
例如:
$i=0; get-childitem $dirname | foreach-object {...rest of script and I miss closing a bracket or something then get... >> and can't remove that and continue writing script.
我相信这是一个简单的关键组合,我还没有找到,但比关闭应用程序和重新打开更好。