当前位置:网站首页>Eight days of learning C language - while loop (embedded) (single chip microcomputer)
Eight days of learning C language - while loop (embedded) (single chip microcomputer)
2022-07-05 02:39:00 【Late night taverns don't drink】
When the conditions are met ,if Statement execution after statement , Otherwise, do not execute .
But this statement will only be executed once .
Because we find that many practical examples in life are : We need to finish the same thing many times .
So how do we do it ?
C Language introduces us : while sentence , It's possible to loop .
// Print... On the screen 1 - 10 The number of
//int main()
//{
// int i = 1;
// while (i <= 10)
// {
// printf("%d ", i);
// i++;
// }
//
// return 0;
//}
break and continue Introduce
// stay while In circulation ,break Used to permanently terminate the loop ;
// stay while In circulation ,continue The purpose of this is to skip this cycle
//( Code behind )
// Go directly to the judgment part , See if the next cycle ;
//int main()
//{
// int i = 1;
// while (i <= 10)
// {
// if (i == 5)
// break;
// continue;
// printf("%d ", i);
// i++;
// }
// return 0;
//}getchar Introduce
//getchar
//EOF - end of file - End of file flag ;
//int main()
//{
// int ch=getchar();
// //printf("%c\n", ch);
// putchar(ch);// Output a character
// return 0;
//}
//int main()
//{
// int ch = 0;
// while ((ch = getchar())!=EOF)
// {
// putchar(ch);
//
// }//ctrl + z - getchar End of read ;
//
// return 0;
//}
//int main()
//{
// int password[20] = { 0 };
// printf(" Please input a password :>");
// scanf("%s", password);
// // Clean buffer
// //getchar();// Can only handle \n;
// // Method 2 : Clean up multiple characters in the buffer
// int tmp = 0;
// while ((tmp = getchar()) != '\n')
// {
// ;
// }
// printf(" Please confirm the password (Y/N)");
// int ch = getchar();
// if (ch == 'Y')
// {
// printf(" Confirm success \n");
// }
// else
// {
// printf(" Confirmation failed \n");
// }
//
// return 0;
//}
//int main()
//{
// int i = 1;
// while (i <= 10)
// {
// i = i + 1;
// if (i == 5)
// continue;
// printf("%d ",i);
// }
// return 0;
//}//2 3 4 6 7 8 9 10 11
//
//int main()
//{
// int i = 1;
// while (i <= 10)
// {
// if (i == 5)
// continue;
// printf("%d ", i);
// i = i + 1;
// }
// return 0;
//}//1 2 3 4
// The purpose of this code is :
// Print only numeric characters , Skip other characters .
//int main()
//{
// char ch = '\0';
// while ((ch = getchar()) != EOF)
// {
// if (ch < '0' || ch > '9')
// continue;
// putchar(ch);
// }
//
// return 0;
//}
//int main()
//{
// int ch = 0;
// while ((ch = getchar()) != EOF)// Get any character ;
// putchar(ch);// Output any character ;
// return 0;
//}边栏推荐
- Video display and hiding of imitation tudou.com
- LeetCode 314. Binary tree vertical order traversal - Binary Tree Series Question 6
- Pgadmin 4 V6.5 release, PostgreSQL open source graphical management tool
- Marubeni Baidu applet detailed configuration tutorial, approved.
- ASP. Net core 6 framework unveiling example demonstration [01]: initial programming experience
- Spoon inserts and updates the Oracle database, and some prompts are inserted with errors. Assertion botch: negative time
- Avoid material "minefields"! Play with super high conversion rate
- Matrixone 0.2.0 is released, and the fastest SQL computing engine is coming
- When to catch an exception and when to throw an exception- When to catch the Exception vs When to throw the Exceptions?
- GFS distributed file system
猜你喜欢

【LeetCode】404. Sum of left leaves (2 brushes of wrong questions)

Practice of tdengine in TCL air conditioning energy management platform

Yolov5 model training and detection

Summary and practice of knowledge map construction technology

Application and Optimization Practice of redis in vivo push platform
![[download white paper] does your customer relationship management (CRM) really](/img/e3/f130d071afb7309fdbf8a9c65b1d38.jpg)
[download white paper] does your customer relationship management (CRM) really "manage" customers?

Spark SQL learning bullet 2

Asp+access campus network goods trading platform

Asynchronous and promise

Missile interception -- UPC winter vacation training match
随机推荐
Open source SPL optimized report application coping endlessly
Blue bridge - maximum common divisor and minimum common multiple
Prometheus monitors the correct posture of redis cluster
Bert fine tuning skills experiment
Talk about the things that must be paid attention to when interviewing programmers
Can you really learn 3DMAX modeling by self-study?
Erreur de type de datagramme MySQL en utilisant Druid
ASP. Net core 6 framework unveiling example demonstration [01]: initial programming experience
The most powerful new household god card of Bank of communications. Apply to earn 2100 yuan. Hurry up if you haven't applied!
Go RPC call
Leetcode takes out the least number of magic beans
Comparison of advantages and disadvantages between platform entry and independent deployment
Zabbix
Asp+access campus network goods trading platform
When to catch an exception and when to throw an exception- When to catch the Exception vs When to throw the Exceptions?
Yolov5 model training and detection
Three properties that a good homomorphic encryption should satisfy
GFS distributed file system
d3js小记
The phenomenology of crypto world: Pioneer entropy