当前位置:网站首页>7.7(5)
7.7(5)
2022-08-03 05:11:00 【tt142】
我发现学编程真的真的很需要极其强大的清晰头脑还有逻辑分析,你要比较一个让你执行的任务怎么做最省时间又可读,还有如果进行很复杂的程序怎么建立逻辑
越发觉得全民普及计算机的说法简直可笑
总结一下今天学了do while语句和for循环的第二个变种以及4个实际应用题,一共花了五六个小时吧,性价比低到离谱,但是有两道我自己是有思路的,只是实际代码细节瘸腿,不能100%做好
今天的代码块就写dowhile打印1-10,还有模拟用户登录场景,三次不对退出登录
int main()
{
int a = 1;
do
{
printf("%d ",a);
a++;
}
while(a<=10);
return 0;
}
#include <stdlib.h>
#include <string.h>
#include <windows.h>
int main()
{
int a = 0;
char i[20] = {0};
for(a=1;a<3;a++)
{
if(strcmp(i,"123456") == 0)
{
printf("登录成功");
break;
}
else
{
Sleep(1000);
printf("密码错误请重试");
system("cls");
}
}
if(a=3)
{
printf("退出登录");
}
return 0;
}
边栏推荐
猜你喜欢
随机推荐
1094 谷歌的招聘 (20 分)
3n+1问题
Djiango第四次培训笔记
1. 两数之和
Odps temporary query can write SQL, turned out to a named?
NotImplementedError: file structure not yet supported
Djiango第二次培训
Common fluorescent dyes to modify a variety of groups and its excitation and emission wavelength data in the data
web安全-sql注入漏洞
IO process thread -> thread -> day5
JDBC与连接池
typescript46-函数之间的类型兼容性
flask 面试题 问题
Ali cloud object storage oss private barrels to generate links
机器码介绍
Presto installation and deployment tutorial
Build your own web page on raspberry pie (1)
Length n of condensed distance matrix ‘y‘ must be a binomial coefficient
4.如何避免缓存穿透、缓存击穿、缓存雪崩
js实现一个 bind 函数