
【招募体验官】ST云实验室先锋计划:解锁远程调试新体验
【技术之约】2025 STM32峰会邀您共赴技术盛宴!
【STM32F769I-DISC1】测评04:使用ADC通道制作的位移采集模块,上传数据到PC端
【STM32F769I-DISC1】测评03:使用板载的串口6制作生物体监测
【STM32F769I-DISC1】测评02:调试串口1与PC通讯功能
【名单公布】GUI Demo板申请活动出名单了!
我是星海灿烂,我的2024年总结
【粉丝福利】“意”起来!2025新年倒计时活动,7天7活动,冲!
收到新年礼物开发板
【板卡试用】ST25R100 – ST新一代高性价比NFC读写器芯片:轻松打造智能交互体验
public static void main(String[] args) {
while(true) {
String Mylover = "";
for (int i = 0; i < 3; i++) {
char a = (char)(Math.random() * 26 + 65);
Mylover = Mylover + a;
}
if (Mylover.equals("YOU")) {
System.out.println("My dream comes true!");
break;
}
}
}
}
if(you love me ?)
{
printf("hellow word");
}
else if (you love others ?)
{
go to lineone ;
}
if(you love me ?)
{
printf("hellow word");
}
else if (you love others ?)
{
go to lineone ;
}
这是我最喜欢的传感器赋能工业物联网
以前st发布那个mems还专门开过一个视频宣讲会,略有了解。st的mems比市面上的同类产品具有更高的精度和更低的功耗,虽然我对这些不敏感,可这是一种进步,更是一种技术优势。而且还有配套的pc软件协助开发,视频中的应用也非常多,我印象最深的是那个手表,借助mems的手势控制,可以把按钮去掉了都。对于新手更关注的还是入门性,mems的开发板十分丰富,视频中介绍的就有8个,你想怎么测就怎么测。十分强大内容
学习了,这个做的很不错,蛮全面的
#include<windows.h>
void color(int m)
{
HANDLE consolehend;
consolehend = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(consolehend, m);
}
int main()
{
int s=0;
char str[]=" 我喜欢你! ";
double x,y;
for(y=1.3;y>=-1.1;y-=0.11)
{
for(x=-2;x<1.4;x+=0.05)
{
if((((x*x+y*y-1)*(x*x+y*y-1)*(x*x+y*y-1)-x*x*y*y*y)<0))
{
s++;
if(s>=378 && s<=392)
{
color(0x0b);
printf("%c", str[s-378]);
Sleep(50);
}
else
{
if(s%4==1){color(0x0a);printf("l");}
if(s%4==2){color(0x0e);printf("o");}
if(s%4==3){color(0x0c);printf("v");}
if(s%4==0){color(0x0d);printf("e");}
Sleep(1);
}
}
else
printf(" ");
}
printf("\n");
}
printf("按任意键退出!");
getchar();
}
#include<windows.h>
void color(int m)
{
HANDLE consolehend;
consolehend = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(consolehend, m);
}
int main()
{
int s=0;
char str[]=" 我喜欢你! ";
double x,y;
for(y=1.3;y>=-1.1;y-=0.11)
{
for(x=-2;x<1.4;x+=0.05)
{
if((((x*x+y*y-1)*(x*x+y*y-1)*(x*x+y*y-1)-x*x*y*y*y)<0))
{
s++;
if(s>=378 && s<=392)
{
color(0x0b);
printf("%c", str[s-378]);
Sleep(50);
}
else
{
if(s%4==1){color(0x0a);printf("l");}
if(s%4==2){color(0x0e);printf("o");}
if(s%4==3){color(0x0c);printf("v");}
if(s%4==0){color(0x0d);printf("e");}
Sleep(1);
}
}
else
printf(" ");
}
printf("\n");
}
printf("按任意键退出!");
getchar();
}