本文介绍了请帮助我不能获得字符串的位置我的投入是“Dsakjfghap”我想知道“P”的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace posi
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("enter string");
string s=Console.ReadLine();
string[]sa=new string[] {s};
for(int i=0;i<sa[i].Length-1;i++)
{
if(sa[i]=="p")
{
Console.WriteLine(i);
Console.ReadLine();
}
}
}
}
}
推荐答案
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace posi
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("enter string");
string s=Console.ReadLine();
int i = s.IndexOf('p');
Console.WriteLine(i);
Console.ReadLine();
}
}
}
String str = "Ridwan";
char c = str[1];
所以你的固定代码应该像这样(它有效)
So Your fixed code should be something Like this (it works)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace posi
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("enter string");
string s = Console.ReadLine();
for (int i = 0; i < s.Length - 1; i++)
{
if (s[i] == 'p')
{
Console.WriteLine(i);
Console.ReadLine();
}
}
}
}
}
这篇关于请帮助我不能获得字符串的位置我的投入是“Dsakjfghap”我想知道“P”的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!