因此代码片段是我试图将数字增加一个百分比,而我无法弄清楚我做错了什么,因为它只是给我一些我试图增加的数字。我是c#编程的新手,所以请不要去找我,但一些帮助将不胜感激。 (piNo代表顺便提高的百分比)
Console.WriteLine("Enter the number you want to increase");
int piNo_1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter the percentage you want to increase by");
int piNo_2 = Convert.ToInt32(Console.ReadLine());
int calc_1;
calc_1 = piNo_2 + 100;
int calc_2 = calc_1 / 100;
int ans = calc_2 * piNo_1;
Console.WriteLine(ans);
Console.ReadLine();