当前位置:网站首页>C simple question 2
C simple question 2
2022-07-07 23:34:00 【Bobo in summer】
13. seek n within ( barring n) Can't be 2 and 5 to be divisible by ( Can be 2 perhaps 5 Divisible but not divisible at the same time ) The square root of the sum of all natural numbers s,n Input from keyboard .
Console.WriteLine(" Please enter n");
int n = int.Parse(Console.ReadLine());
int sum = 0;
for(int i=0;i<n;i++)
{
if(i%2!=0&&i%5!=0)
{
sum += i;
}
}
double s = Math.Sqrt(sum);
Console.WriteLine(s);
14. Input 1~7 A number between , Output its corresponding day of the week . For example, the input 1 Output Monday.
Console.WriteLine(" Please enter 1-7 Number between :");
int n = int.Parse(Console.ReadLine());
switch(n%10)
{
case 1: Console.WriteLine("Monday");
break;
case 2:
Console.WriteLine("Tuesday");
break;
case 3:
Console.WriteLine("Wednesday");
break;
case 4:
Console.WriteLine("Thursday");
break;
case 5:
Console.WriteLine("Friday");
break;
case 6:
Console.WriteLine("Saturday");
break;
case 7:
Console.WriteLine("Sunday");
break;
default:Console.WriteLine(" There is an error in your input !");
break;
}
15. The single digit is 8 And can be 4 Divide but not be 7 How many two digit natural numbers are there in total , Number of Statistics , And output these numbers .
int count = 0;
for(int i=10;i<100;i++)
{
if(i%10==8&&i %4==0&&i%7!=0)
{
Console.Write("{0} ", i);
count++;
}
}
Console.WriteLine(" share {0} individual ",count);
16. Enter a string , use foreach Statement to calculate the length of the input string , And display the length .
Console.WriteLine(" Please enter a string :");
string st = Console.ReadLine();
int count = 0;
foreach(char c in st)
{
Console.Write("{0} ",c);
count++;
}
Console.WriteLine(" The length is :{0}",count);
17. Input 7 Number , Count the positive numbers respectively 、 negative 、 The number of zeros .
int[] marry = new int[7];
for (int i = 0; i < marry.Length; i++)
{
marry[i] = int.Parse(Console.ReadLine());
}
int zs = 0;
int fs = 0;
int zero = 0;
for (int i = 0; i < marry.Length; i++)
{
if (marry[i] > 0)
zs++;
else if (marry[i] < 0)
fs++;
if (marry[i] == 0)
zero++;
}
Console.Write(" Positive numbers have {0} individual , Negative numbers have {1} individual ,0 Yes {2} individual ", zs, fs, zero);
18. Calculation :1/2+2/3-3/4+4/5…… front 50 term .
double sum = 0;
for (double i = 1; i <= 50; i++)
{
sum += Math.Pow(-1, i + 1) * i / (i + 1);
}
Console.WriteLine("1/2+2/3-3/4+4/5…… front 50 Items for {0}", sum);
Console.ReadLine();
19. Fei's sequence is A.D 13 Invented by the mathematician fiboracci in the th century . namely :1,2,3,5,8,13,21,34,55,89,……, Output ratio 144 The big one, the smallest one .
int a = 1;
int b = 2;
int c = 3;
while (c < 144)
{
a = b;
b = c;
c = a + b;
}
Console.WriteLine(c+b);
20. Input some integers from the terminal , Find out more than 0 Number of numbers , And output these numbers and their average .
Console.WriteLine(" Please enter some integers :");
int[] a = new int[5];
for (int i = 0; i < a.Length; i++)
{
a[i] = int.Parse(Console.ReadLine());
}
double sum = 0;
double avg = 0;
int count = 0;
for(int i=0;i<a.Length;i++)
{
if (a[i] > 0)
{
sum += a[i];
count++;
avg = sum / count;
}
}
Console.WriteLine(" The average value is {0}",avg);
21. Receive a real number entered by the user N, The absolute value of the real number is calculated and output by programming without using the function of calculating the absolute value .
Console.WriteLine(" Please enter a positive integer N:");
int N = int.Parse(Console.ReadLine());
int a;
if (N ==0)
Console.WriteLine("0 No absolute value !");
else if (N > 0)
Console.WriteLine("N The absolute value of is :{0}", N);
else
Console.WriteLine("N The absolute value of is :{0}", N * (-1));
. Receive a positive integer entered by the user N, seek 1-2+3-4…+N And output .
Console.WriteLine(" Please enter a positive integer N:");
int a = int.Parse(Console.ReadLine());
double sum = 0;
for(int i=0;i<=a;i++)
{
sum += Math.Pow(-1,i+1)*i;//( base number , Power number )
}
Console.WriteLine(" seek 1-2+3-4…+N Value :{0}", sum);
23. Receive a positive integer entered by the user N, Calculation 1 To N The cube and .
Console.WriteLine(" Please enter a positive integer :");
int a = int.Parse(Console.ReadLine());
double sum = 0;
for(int i=0;i<=a;i++)
{
sum += i * i*i ;
}
Console.WriteLine(" Cube sum is :{0}",sum);
24. Receive two numbers entered by the user , Judge whether two numbers can be divisible .
Console.WriteLine(" Please enter two numbers :");
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
if (a % b == 0||b%a==0)
{
Console.WriteLine(" aliquot ");
}
else
Console.WriteLine(" Not divisible ");
边栏推荐
- 8.31 Tencent interview
- 经纬度PLT文件格式说明
- System design overview
- As a new force, chenglian premium products was initially injected, and the shares of relevant listed companies rose 150% in response
- USB (XVII) 2022-04-15
- Anxinco EC series modules are connected to the multi protocol access products of onenet Internet of things open platform
- Vs extension tool notes
- SAP HR 社会工作经历 0023
- B_QuRT_User_Guide(36)
- PCB wiring rules of PCI Express interface
猜你喜欢
PCI-Express接口的PCB布线规则
Anxin vb01 offline voice module access intelligent curtain guidance
Lm12 rolling heikin Ashi double K-line filter
[stm32+esp8266 connect Tencent cloud IOT development platform 2] stm32+esp8266-01s connect Tencent cloud
Spark 离线开发框架设计与实现
SAP HR 家庭成员信息
PCB wiring rules of PCI Express interface
UE4_ Use of ue5 blueprint command node (turn on / off screen response log publish full screen display)
B_QuRT_User_Guide(36)
RE1 attack and defense world reverse
随机推荐
云原生正在吞噬一切,开发者该如何应对?
Solution of intelligent supply chain collaboration platform in electronic equipment industry: solve inefficiency and enable digital upgrading of industry
B_QuRT_User_Guide(36)
Experience sharing of system architecture designers in preparing for the exam: the direction of paper writing
Explain
深入理解Mysql锁与事务隔离级别
[compilation principle] lexical analysis design and Implementation
How to change the formula picture in the paper directly into the formula in word
IDEA 2021.3. X cracking
统计电影票房排名前10的电影并存入还有一个文件
Coreseek:第二步建索引及測试
Home appliance industry channel business collaboration system solution: help home appliance enterprises quickly realize the Internet of channels
StringUtils工具类
B_QuRT_User_Guide(40)
Markdown
As a new force, chenglian premium products was initially injected, and the shares of relevant listed companies rose 150% in response
城联优品作为新力量初注入,相关上市公司股价应声上涨150%
Markdown
leetcode-520. Detect capital letters -js
S2b2b mall solution of intelligent supply chain in packaging industry: opening up a new ecosystem of e-commerce consumption